Integrated the custom fx test suite into the main test suite. All tests are now run...
[jquery.git] / build.xml
1 <project name="jQuery" default="all" basedir=".">
2
3     <!--
4     - Using this build file to create your own custom distribution -
5
6     If you want to include jQuery on your site with a certain set of plugins,
7     follow these steps to create your custom build:
8
9     1. Copy the plugins you need to the plugins folder (if you haven't already, checkout
10        the plugins folder from SVN.
11     2. Modify the PLUGINS property to include all plugins you want, see PLUGINS_ALL for syntax
12        eg. if you need form and tabs plugin, set the value for PLUGINS to this:
13        form/*.js, tabs/*.js
14     3. Execute the standard jquery and packed targets to build your distribution
15
16     TODO Using this build file to create docs for a single plugin
17     -->
18
19     <!-- SETUP -->
20
21     <property description="Source Folder" name="SRC_DIR" value="src" />
22     <property description="Files for parsing etc." name="BUILD_DIR" value="build" />
23     <property description="Rhino JS Engine" name="JAR" value="${BUILD_DIR}/js.jar" />
24
25     <property description="Dir to look for plugins" name="PLUGIN_DIR" location="../plugins" />
26     <property description="Add single plugins here" name="PLUGINS" value="none" />
27     <property description="Add all plugins here" name="PLUGINS_ALL"
28         value="button/*.js,center/*.js,cookie/*.js,form/*.js,greybox/*.js,interface/*.js,pager/*.js,tablesorter/*.js,tabs/*.js,tooltip/*.js,accordion/*.js" />
29
30     <property description="Target parent folder for built files" name="PREFIX" value="." />
31     <property description="Folder for docs target" name="DOCS_DIR" value="${PREFIX}/docs" />
32     <property description="Folder for test target" name="TEST_DIR" value="${PREFIX}/test" />
33     <property description="Folder for jquery, min, lite and packed target" name="DIST_DIR" value="${PREFIX}/dist" />
34
35     <!-- Files names for distribution -->
36     <property name="JQ" value="${DIST_DIR}/jquery.js" />
37     <property name="JQ_LITE" value="${DIST_DIR}/jquery.lite.js" />
38     <property name="JQ_MIN" value="${DIST_DIR}/jquery.min.js" />
39     <property name="JQ_PACK" value="${DIST_DIR}/jquery.pack.js" />
40
41     <!-- MAIN -->
42
43     <target name="jquery" description="Main jquery build, set PLUGINS property to include plugins">
44         <echo message="Building ${JQ}" />
45         <mkdir dir="${DIST_DIR}" />
46         <concat destfile="${JQ}">
47             <fileset dir="${SRC_DIR}" includes="intro.js" />
48             <fileset dir="${SRC_DIR}" includes="jquery/jquery.js" />
49             <fileset dir="${SRC_DIR}" includes="selector/selector.js" />
50             <fileset dir="${SRC_DIR}" includes="event/event.js" />
51             <fileset dir="${SRC_DIR}" includes="fx/fx.js" />
52             <fileset dir="${SRC_DIR}" includes="ajax/ajax.js" />
53             <fileset dir="${PLUGIN_DIR}" includes="${PLUGINS}" />
54             <fileset dir="${SRC_DIR}" includes="outro.js" />
55         </concat>
56         <echo message="${JQ} built." />
57     </target>
58
59     <target name="jquery_with_plugins" description="Build jquery with all plugins, useful to full documentation">
60         <antcall target="jquery">
61             <param name="PLUGINS" value="${PLUGINS_ALL}" />
62         </antcall>
63     </target>
64
65     <target name="lite" depends="jquery" description="Remove all /** */ comments">
66         <echo message="Building ${JQ_LITE}" />
67         <java jar="${JAR}" fork="true">
68             <arg value="${BUILD_DIR}/build/lite.js" />
69             <arg value="${JQ}" />
70             <arg value="${JQ_LITE}" />
71         </java>
72         <echo message="${JQ_LITE} built." />
73     </target>
74
75     <target name="min" depends="jquery" description="Remove all comments and whitespace, no compression">
76         <echo message="Building ${JQ_MIN}" />
77         <java jar="${JAR}" fork="true">
78             <arg value="${BUILD_DIR}/build/min.js" />
79             <arg value="${JQ}" />
80             <arg value="${JQ_MIN}" />
81         </java>
82         <echo message="${JQ_MIN} built." />
83     </target>
84
85     <target name="pack" depends="jquery" description="Remove all comments and whitespace and compress">
86         <echo message="Building ${JQ_PACK}" />
87         <java jar="${JAR}" fork="true">
88             <arg value="${BUILD_DIR}/build/pack.js" />
89             <arg value="${JQ}" />
90             <arg value="${JQ_PACK}" />
91         </java>
92         <echo message="${JQ_PACK} built." />
93     </target>
94
95     <target name="pack_with_plugins" depends="jquery_with_plugins" description="Pack jquery with all plugins, not very useful">
96         <echo message="Building ${JQ_PACK}" />
97         <java jar="${JAR}" fork="true">
98             <arg value="${BUILD_DIR}/build/pack.js" />
99             <arg value="${JQ}" />
100             <arg value="${JQ_PACK}" />
101         </java>
102         <echo message="${JQ_PACK} built." />
103     </target>
104
105     <target name="test" depends="jquery" description="Copy files for the test suite into their own directory.">
106         <echo message="Building Test Suite" />
107         <delete dir="${TEST_DIR}" />
108         <mkdir dir="${TEST_DIR}/data" />
109         <copy todir="${TEST_DIR}/data">
110             <fileset dir="${BUILD_DIR}/test/data/" />
111         </copy>
112         <copy todir="${TEST_DIR}" file="${BUILD_DIR}/test/index.html" />
113         <echo message="Test Suite built." />
114     </target>
115
116     <target name="docs" depends="jquery" description="Reads inline docs from source and compiles into xml file">
117         <echo message="Building Documentation" />
118         <delete dir="${DOCS_DIR}" />
119         <mkdir dir="${DOCS_DIR}/data" />
120         <copy todir="${DOCS_DIR}" file="${BUILD_DIR}/docs/.htaccess" />
121         <mkdir dir="${DOCS_DIR}/js" />
122         <copy todir="${DOCS_DIR}/js">
123             <fileset dir="${BUILD_DIR}/docs/js">
124                 <include name="**/*.js" />
125             </fileset>
126         </copy>
127         <copy todir="${DOCS_DIR}/style">
128             <fileset dir="${BUILD_DIR}/docs/style">
129                 <include name="**" />
130             </fileset>
131         </copy>
132         <java jar="${JAR}" fork="true">
133             <arg value="${BUILD_DIR}/docs/docs.js" />
134             <arg value="${JQ}" />
135             <arg value="${DOCS_DIR}" />
136         </java>
137         <echo message="Documentation built." />
138     </target>
139
140     <!-- TODO refactor to remove duplication with above -->
141     <target name="docs_with_plugins" depends="jquery_with_plugins">
142         <echo message="Building Documentation" />
143         <delete dir="${DOCS_DIR}" />
144         <mkdir dir="${DOCS_DIR}/data" />
145         <copy todir="${DOCS_DIR}" file="${BUILD_DIR}/docs/.htaccess" />
146         <mkdir dir="${DOCS_DIR}/js" />
147         <copy todir="${DOCS_DIR}/js">
148             <fileset dir="${BUILD_DIR}/docs/js">
149                 <include name="**/*.js" />
150             </fileset>
151         </copy>
152         <copy todir="${DOCS_DIR}/style">
153             <fileset dir="${BUILD_DIR}/docs/style">
154                 <include name="**" />
155             </fileset>
156         </copy>
157         <java jar="${JAR}" fork="true">
158             <arg value="${BUILD_DIR}/docs/docs.js" />
159             <arg value="${JQ}" />
160             <arg value="${DOCS_DIR}" />
161         </java>
162         <echo message="Documentation built." />
163     </target>\r
164         \r
165         <target name="runtest">\r
166                 <echo message="Running Automated Test Suite" />\r
167                 <java jar="${JAR}" fork="true">\r
168             <arg value="${BUILD_DIR}/runtest/test.js" />\r
169         </java>\r
170                 <echo message="Test Suite Finished" />\r
171         </target>
172
173     <target name="clean">
174         <delete dir="${DOCS_DIR}" />
175         <delete dir="${TEST_DIR}" />
176         <delete dir="${DIST_DIR}" />
177     </target>
178
179     <target name="all" depends="clean,jquery,lite,min,pack,docs,test">
180         <echo message="Build complete." />
181     </target>
182
183 </project>