aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
blob: dca99f40debe45935cc367e18b1848762a20c3b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<project name="jQuery" default="jquery" basedir=".">

    <!--
    To get jQuery even smaller, remove the modules you don't need by removing the fileset elements
	in the jquery-target, for example leaving only these:

	<fileset dir="${SRC_DIR}" includes="intro.js" />
    <fileset dir="${SRC_DIR}" includes="core.js" />
    <fileset dir="${SRC_DIR}" includes="selector.js" />
    <fileset dir="${SRC_DIR}" includes="event.js" />
    <fileset dir="${SRC_DIR}" includes="outro.js" />

	That'd remove ajax, fx and offset support, leaving basic selectors, manipulation and event handling.
    -->

    <!-- SETUP -->

    <property description="Source Folder" name="SRC_DIR" value="src"  />
    <property description="Files for parsing etc." name="BUILD_DIR" value="build" />
    <property description="Rhino JS Engine" name="JAR" value="${BUILD_DIR}/js.jar" />
    <property description="YUICompressor" name="YUICompressor" value="${BUILD_DIR}/yuicompressor-2.4.2.jar" />
	<loadfile description="Version to build" property="version" srcfile="version.txt" />

    <property description="Folder for jquery, min, lite and packed target" name="DIST_DIR" value="./dist" />

    <!-- Files names for distribution -->
    <property name="JQ" value="${DIST_DIR}/jquery.js" />
    <property name="JQ_LITE" value="${DIST_DIR}/jquery.lite.js" />
    <property name="JQ_MIN" value="${DIST_DIR}/jquery.min.js" />
    <property name="JQ_PACK" value="${DIST_DIR}/jquery.pack.js" />
	<loadfile property="version" srcfile="version.txt" />
	
	<taskdef resource="net/sf/antcontrib/antcontrib.properties">
		<classpath>
			<pathelement location="build/ant-contrib-0.6.jar"/>
		</classpath>
	</taskdef>
	<exec executable="svn" outputproperty="svnlog.out" >  
		<arg line="info ."/>  
	</exec> 
	<propertyregex property="revision" input="${svnlog.out}" select="\1">  
		<regexp pattern="Revision: ([0-9]*)"/>  
	</propertyregex>
	<propertyregex property="date" input="${svnlog.out}" select="\1">  
		<regexp pattern="Date: (.+\))"/>  
	</propertyregex>  

    <!-- MAIN -->

    <target name="jquery" description="Main jquery build, concatenates source files and replaces @VERSION">
        <echo message="Building ${JQ}" />
        <mkdir dir="${DIST_DIR}" />
        <concat destfile="${JQ}">
            <fileset dir="${SRC_DIR}" includes="intro.js" />
            <fileset dir="${SRC_DIR}" includes="core.js" />
            <fileset dir="${SRC_DIR}" includes="data.js" />
            <fileset dir="${SRC_DIR}" includes="selector.js" />
            <fileset dir="${SRC_DIR}" includes="event.js" />
            <fileset dir="${SRC_DIR}" includes="support.js" />
            <fileset dir="${SRC_DIR}" includes="ajax.js" />
            <fileset dir="${SRC_DIR}" includes="fx.js" />
            <fileset dir="${SRC_DIR}" includes="offset.js" />
            <fileset dir="${SRC_DIR}" includes="dimensions.js" />
            <fileset dir="${SRC_DIR}" includes="outro.js" />
        </concat>
    	<replaceregexp match="@VERSION" replace="${version}" flags="g" byline="true" file="${JQ}" />
		<replaceregexp match="Date: " replace="Date: ${date}" file="${JQ}" />
		<replaceregexp match="Revision: " replace="Revision: ${revision}" file="${JQ}" />
        <echo message="${JQ} built." />
    </target>

    <target name="min" depends="jquery" description="Remove all comments and whitespace, no compression, great in combination with GZip">
        <echo message="Building ${JQ_MIN}" />
		<apply executable="java" parallel="false" verbose="true" dest="${DIST_DIR}">
			<fileset dir="${DIST_DIR}">
				<include name="jquery.js" />
			</fileset>
			<arg line="-jar" />
			<arg path="${YUICompressor}" />
			<arg value="--charset" />
			<arg value="ANSI" />
			<arg value="-o" />
			<targetfile />
			<mapper type="glob" from="jquery.js" to="jquery.min.js" />
		</apply>
        <echo message="${JQ_MIN} built." />
    </target>

    <target name="pack" depends="jquery" description="Remove all comments and whitespace and compress">
        <echo message="Building ${JQ_PACK}" />
        <java jar="${JAR}" fork="true">
            <arg value="${BUILD_DIR}/build/pack.js" />
            <arg value="${JQ}" />
            <arg value="${JQ_PACK}" />
        </java>
        <echo message="${JQ_PACK} built." />
    </target>

	<target name="runtest">
		<echo message="Running Automated Test Suite" />
		<java jar="${JAR}" fork="true">
            <arg value="${BUILD_DIR}/runtest/test.js" />
        </java>
		<echo message="Test Suite Finished" />
	</target>

    <target name="clean">
        <delete dir="${DIST_DIR}" />
    </target>

    <target name="all" depends="clean,jquery,min,pack">
        <echo message="Build complete." />
    </target>
	
	<target name="openAjaxMetadata">
		<property name="target" value="openAjaxMetadata-jquery-${version}.xml" />
		<delete file="dist/jquery-*.xml" />
		<get src="http://www.exfer.net/jquery/createjQueryXMLDocs.py?version=1.3" dest="${target}" />
		<xslt includes="${target}" excludes="build.xml" destdir="./dist" style="build/style.xsl" extension=".xml" />
		<delete file="${target}" />
	</target>

</project>