ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/build.xml
(Generate patch)

Comparing jsr166/build.xml (file contents):
Revision 1.8 by tim, Wed Dec 11 04:43:23 2002 UTC vs.
Revision 1.27 by tim, Wed May 28 00:33:17 2003 UTC

# Line 1 | Line 1
1 < <project name="jsr166" default="jar">
1 > <project name="jsr166" default="usage">
2  
3    <description>
4      Build file for JSR-166
5  
6 <    Note that junit.jar must be in ${ant.home}/lib for the
7 <    test target to work. [FIXME: This should be automatically
8 <    enforced by this build file by failing with a message if
9 <    junit.jar is not in the right place.]
6 >    JUnit 3.8 or better must be in ${ant.home}/lib for the test target to work.
7    </description>
8  
9 +
10 +  <target name="usage" description="Prints this message">
11 +    <echo>
12 + ant [target], where target is one of:
13 +
14 + usage       (default) Prints this message
15 + compile     Compiles all sources to build folder
16 + jar         Builds library jar from compiled sources
17 + test        Runs all tests (requires JUnit 1.8 in ${ant.home}/lib)
18 + docs        Builds javadocs with custom tags to build folder
19 + dist-docs   Builds javadocs without custom tags to dist folder
20 + dist        Puts all distributable products in single hierarchy
21 +
22 + clean       Removes all build products
23 + dist-clean  Removes all build and distribution products
24 +
25 + checkstyle  Reports on style errors in Java source (verbose, mostly chaff)
26 + doccheck    Reports on javadoc style errors (not working yet)
27 +    </echo>
28 +  </target>
29 +
30 +  <!-- User-specific settings -->
31 +  <property file="user.properties"/>
32 +
33 +  <!-- Set build.warnings in user.properties to turn on -warnunchecked -->
34 +  <!-- <property name="build.warnings" value=""/> -->
35 +
36 +
37    <!-- Compilation options -->
38 +  <property name="build.sourcelevel"    value="1.5"/>
39 +  <property name="build.docsourcelevel" value="1.4"/>
40    <property name="build.debug"          value="true"/>
41    <property name="build.debuglevel"     value="source,lines,vars"/>
42    <property name="build.deprecation"    value="false"/>
16  <property name="build.sourcelevel"    value="1.5"/>
43  
44    <!-- Build locations -->
45    <property name="build.dir"            location="build"/>
46    <property name="build.classes.dir"    location="${build.dir}/classes"/>
47 +  <property name="build.emulation.dir"  location="${build.dir}/emulation"/>
48    <property name="build.testcases.dir"  location="${build.dir}/testcases"/>
49    <property name="build.lib.dir"        location="${build.dir}/lib"/>
50    <property name="build.ant.dir"        location="${build.dir}/ant"/>
51 <  <property name="build.pubdocs.dir"    location="${build.dir}/javadocs"/>
52 <  <property name="build.privdocs.dir"   location="${build.dir}/privdocs"/>
51 >  <property name="build.javadocs.dir"   location="${build.dir}/javadocs"/>
52 >  <property name="build.stripped.dir"   location="${build.dir}/stripped"/>
53    <property name="build.reports.dir"    location="${build.dir}/reports"/>
54 +  <property name="build.doccheck.dir"   location="${build.dir}/doccheck"/>
55    <property name="build.filter.src.dir" location="${build.dir}/filtersrc"/>
56  
57    <!-- Source locations -->
58 <  <property name="src.dir"              location="${basedir}"/>
59 <  <property name="test.src.dir"         location="${basedir}/etc/testcases"/>
58 >  <property name="src.dir"              location="${basedir}/src/main"/>
59 >  <property name="emulation.src.dir"    location="${basedir}/src/emulation"/>
60 >  <property name="test.src.dir"         location="${basedir}/src/test"/>
61    <property name="ant.src.dir"          location="${basedir}/etc/ant"/>
62    <property name="stylesheet.dir"       location="${basedir}/etc/xsl"/>
63    <property name="lib.dir"              location="${basedir}/lib"/>
64 +  <property name="dist.dir"             location="${basedir}/dist"/>
65 +
66 +  <!-- Distribution locations -->
67 +  <property name="dist.javadocs.dir"    location="${dist.dir}/docs"/>
68  
69    <!-- Jar locations -->
70    <property name="product.jar"          location="${build.lib.dir}/jsr166.jar"/>
# Line 40 | Line 73
73    <property name="junit.jar"            location="${lib.dir}/junit.jar"/>
74    <property name="rt.jar"               location="${java.home}/lib/rt.jar"/>
75  
43  <property name="gj.compiler.args"
44           value='-J-Xbootclasspath/p:${javac.jar} -deprecation -warnunchecked'
45  />
76  
77 <  <path id="gj.compiler.bootclasspath">
77 >  <!--
78 >   ! Bootclasspath munging for source compilation.
79 >   -->
80 >
81 >  <path id="javac.bootclasspath.prepend">
82 >    <!-- <pathelement location="${src.dir}"/> -->
83 >    <pathelement location="${javac.jar}"/>
84 >  </path>
85 >
86 >  <path id="javac.bootclasspath">
87 >    <!-- <pathelement location="${src.dir}"/> -->
88      <pathelement location="${collect.jar}"/>
89      <pathelement location="${rt.jar}"/>
90    </path>
91  
92 +  <!-- Flatten bootclasspath prefix into a platform-appropriate string -->
93 +  <property name="javac.bootclasspath.prepend" refid="javac.bootclasspath.prepend"/>
94 +
95 +  <!-- Turn the flattened bootclasspath prefix into a javac argument -->
96 +  <property name="javac.args" value='-J-Xbootclasspath/p:${javac.bootclasspath.prepend}'/>
97 +
98 +
99 +  <!--
100 +   ! Bootclasspath munging for testing, so JUnit can test our local
101 +   ! modifications to java.*.
102 +   -->
103 +
104    <path id="test.classpath">
105      <pathelement location="${product.jar}"/>
106 +    <pathelement location="${build.testcases.dir}"/>
107 +    <pathelement location="${junit.jar}"/>
108    </path>
109  
110 +  <!-- Flatten test classpath into a platform-appropriate string -->
111 +  <property name="test.classpath" refid="test.classpath"/>
112 +
113 +  <!-- Turn the flattened test classpath into a javac argument -->
114 +  <property name="test.javac.args" value='-Xbootclasspath/p:${test.classpath}'/>
115 +
116 +
117 +
118 +  <!-- Main targets -->
119 +
120 +  <target name="compile" depends="init"
121 +          description="Compiles main sources to build folder">
122  
57  <target name="compile">
123      <mkdir dir="${build.classes.dir}"/>
124 +
125      <javac srcdir="${src.dir}"
126            destdir="${build.classes.dir}"
127              debug="${build.debug}"
# Line 64 | Line 130
130             source="${build.sourcelevel}"
131               fork="true">
132  
133 <      <bootclasspath refid="gj.compiler.bootclasspath"/>
134 <      <compilerarg line="${gj.compiler.args}"/>
69 <
70 <      <!-- need this because srcdir is basedir! -->
71 <      <include name="java/**/*.java"/>
133 >      <bootclasspath refid="javac.bootclasspath"/>
134 >      <compilerarg line="${javac.args} ${build.warnings.option}"/>
135  
136      </javac>
137 +
138    </target>
139  
140  
141 <  <target name="jar" depends="compile">
78 <    <mkdir dir="${build.lib.dir}"/>
79 <    <jar basedir="${build.classes.dir}"
80 <        destfile="${product.jar}"
81 <    />
82 <  </target>
141 >  <target name="jar" depends="native-jar, emulation-jar"/>
142  
143  
144 <  <target name="test" depends="report-tests"/>
144 >  <target name="test" depends="init, check-junit, report-tests"
145 >          description="Runs all tests (requires JUnit 3.8+ in ${ant.home}/lib)"
146 >  />
147  
87  <target name="docs" depends="public-docs, private-docs"/>
148  
149 <  <target name="public-docs" depends="clean-docs, filter-src">
150 <    <delete dir="${build.pubdocs.dir}"/>
151 <    <mkdir dir="${build.pubdocs.dir}"/>
152 <    <javadoc destdir="${build.pubdocs.dir}"
153 <                link="http://java.sun.com/j2se/1.4.1/docs/api"
154 <            overview="${src.dir}/intro.html"
155 <              source="${build.sourcelevel}">
149 >  <target name="checkstyle" depends="filter-src"
150 >          description="Reports on style errors in Java source (verbose, mostly chaff)">
151 >
152 >    <taskdef resource="checkstyletask.properties"
153 >            classpath="${lib.dir}/checkstyle-all-2.4.jar"/>
154 >
155 >    <checkstyle>
156 >      <formatter type="plain"/>  <!-- also available: type="xml" -->
157 >      <fileset dir="${build.filter.src.dir}" includes="**/*.java"/>
158 >    </checkstyle>
159 >
160 >  </target>
161 >
162 >
163 >  <target name="doccheck" depends="filter-src"
164 >          description="Reports on javadoc style errors (not working yet)">
165  
166 <      <packageset dir="${build.filter.src.dir}">
167 <        <include name="java/**"/>
99 <      </packageset>
166 >    <delete dir="${build.doccheck.dir}"/>
167 >    <mkdir dir="${build.doccheck.dir}"/>
168  
169 +    <javadoc doclet="com.sun.tools.doclets.doccheck.DocCheck"
170 +         docletpath="${lib.dir}/doccheck.jar"
171 +            destdir="${build.doccheck.dir}">
172 +      <packageset dir="${build.filter.src.dir}"/>
173      </javadoc>
174 +
175    </target>
176  
177  
178 <  <target name="private-docs" depends="clean-docs, filter-src">
179 <    <delete dir="${build.privdocs.dir}"/>
180 <    <mkdir dir="${build.privdocs.dir}"/>
181 <    <javadoc destdir="${build.privdocs.dir}"
178 >  <target name="docs" depends="filter-src"
179 >          description="Builds javadocs with custom tags to build folder">
180 >
181 >    <delete dir="${build.javadocs.dir}"/>
182 >    <mkdir dir="${build.javadocs.dir}"/>
183 >
184 >    <javadoc destdir="${build.javadocs.dir}"
185                  link="http://java.sun.com/j2se/1.4.1/docs/api"
186              overview="${src.dir}/intro.html"
187 <              source="${build.sourcelevel}">
187 >              source="${build.docsourcelevel}">
188  
189        <tag name="revised" description="Last revised:"/>
190        <tag name="spec" description="Specified by:"/>
191        <tag name="editor" description="Last edited by:"/>
192        <tag name="fixme" description="FIX ME:"/>
193 <      <packageset dir="${build.filter.src.dir}">
118 <        <include name="java/**"/>
119 <      </packageset>
193 >      <packageset dir="${build.filter.src.dir}"/>
194  
195      </javadoc>
196 +
197 +  </target>
198 +
199 +
200 +  <!--
201 +   # javac -s doesn't reliably generate compilable code. It generates
202 +   # bridge methods (marked as "synthetic") that can have identical
203 +   # signatures to existing methods except for the return value.
204 +   -->
205 +  <target name="strip" depends="init">
206 +
207 +    <mkdir dir="${build.stripped.dir}"/>
208 +
209 +    <javac srcdir="${src.dir}"
210 +          destdir="${build.stripped.dir}"
211 +            debug="${build.debug}"
212 +       debuglevel="${build.debuglevel}"
213 +      deprecation="${build.deprecation}"
214 +           source="${build.sourcelevel}"
215 +             fork="true">
216 +
217 +      <bootclasspath refid="javac.bootclasspath"/>
218 +      <compilerarg line="${javac.args} ${build.warnings.option} -s"/>
219 +
220 +    </javac>
221 +
222    </target>
223  
224  
225 <  <target name="clean" depends="clean-docs">
225 >  <target name="dist" depends="init, dist-clean, dist-jar, dist-docs"
226 >          description="Puts all distributable products in single hierarchy"/>
227 >
228 >
229 >  <target name="clean"
230 >          description="Removes all build products">
231 >
232      <delete dir="${build.dir}"/>
233      <delete dir="${build.classes.dir}"/>
234      <delete dir="${build.lib.dir}"/>
235 +
236 +  </target>
237 +
238 +
239 +  <target name="dist-clean"
240 +          description="Removes all build and distribution products">
241 +
242 +    <delete dir="${dist.dir}"/>
243 +
244 +  </target>
245 +
246 +
247 +  <!-- Anthill targets -->
248 +
249 +  <!-- Should really run the tests instead of just the jar target -->
250 +  <target name="anthill-build" depends="jar, test, docs, dist-docs"/>
251 +
252 +  <target name="anthill-publish">
253 +    <copy todir="${deployDir}/docs/private">
254 +      <fileset dir="${build.javadocs.dir}"/>
255 +    </copy>
256 +    <copy todir="${deployDir}/docs/public">
257 +      <fileset dir="${dist.javadocs.dir}"/>
258 +    </copy>
259 +    <copy tofile="${deployDir}/index.html"
260 +          file="${basedir}/etc/anthill-index.html"/>
261 +    <copy todir="${deployDir}/notes">
262 +      <fileset dir="${basedir}/etc/notes"/>
263 +    </copy>
264    </target>
265  
266  
267 <  <target name="clean-docs">
268 <    <delete dir="${build.filter.src.dir}"/>
269 <    <delete dir="${build.pubdocs.dir}"/>
270 <    <delete dir="${build.privdocs.dir}"/>
267 >  <!-- Internal targets -->
268 >
269 >  <target name="set-warnings-if" if="build.warnings">
270 >
271 >    <property name="build.warnings.option" value="-warnunchecked"/>
272 >
273 >  </target>
274 >
275 >
276 >  <target name="set-warnings-unless" unless="build.warnings">
277 >
278 >    <property name="build.warnings.option" value=""/>
279 >
280 >  </target>
281 >
282 >
283 >  <target name="init" depends="set-warnings-if, set-warnings-unless">
284 >
285 >    <!-- Version is kept in a separate file -->
286 >    <loadfile property="version" srcFile="version.properties"/>
287 >    <echo>Building JSR-166 version ${version}</echo>
288 >
289 >  </target>
290 >
291 >
292 >  <target name="native-jar" depends="compile"
293 >          description="Builds library jar from compiled sources">
294 >
295 >    <mkdir dir="${build.lib.dir}"/>
296 >
297 >    <jar destfile="${product.jar}">
298 >      <fileset dir="${build.classes.dir}"/>
299 >    </jar>
300 >
301 >  </target>
302 >
303 >
304 >  <target name="compile-emulation" depends="init"
305 >          if="build.emulation"
306 >          description="Compiles emulation sources to build folder">
307 >
308 >    <mkdir dir="${build.emulation.dir}"/>
309 >
310 >    <javac srcdir="${emulation.src.dir}"
311 >          destdir="${build.emulation.dir}"
312 >            debug="${build.debug}"
313 >       debuglevel="${build.debuglevel}"
314 >      deprecation="${build.deprecation}"
315 >           source="${build.sourcelevel}"
316 >             fork="true">
317 >
318 >      <bootclasspath refid="javac.bootclasspath"/>
319 >      <compilerarg line="${javac.args} ${build.warnings.option}"/>
320 >
321 >    </javac>
322 >
323 >  </target>
324 >
325 >
326 >  <target name="emulation-jar" depends="native-jar, compile-emulation"
327 >          if="build.emulation">
328 >
329 >    <jar destfile="${product.jar}" update="true" duplicate="add">
330 >      <fileset dir="${build.emulation.dir}"/>
331 >    </jar>
332 >
333 >  </target>
334 >
335 >
336 >  <target name="dist-jar" depends="clean, jar">
337 >
338 >    <copy file="${product.jar}" todir="${dist.dir}"/>
339 >
340 >  </target>
341 >
342 >
343 >  <target name="dist-docs" depends="filter-src"
344 >          description="Builds javadocs without custom tags to dist folder">
345 >
346 >    <delete dir="${dist.javadocs.dir}"/>
347 >    <mkdir dir="${dist.javadocs.dir}"/>
348 >
349 >    <javadoc destdir="${dist.javadocs.dir}"
350 >                link="http://java.sun.com/j2se/1.4.1/docs/api"
351 >            overview="${src.dir}/intro.html"
352 >              source="${build.docsourcelevel}">
353 >
354 >      <packageset dir="${build.filter.src.dir}"/>
355 >
356 >    </javadoc>
357 >
358    </target>
359  
360  
361 <  <!-- Internal targets used by docs target -->
361 >  <target name="compile-ant-filter" depends="init">
362  
141  <target name="compile-ant">
363      <mkdir dir="${build.ant.dir}"/>
364 +
365      <javac srcdir="${ant.src.dir}"
366            destdir="${build.ant.dir}"
367             source="1.4"
368      />
369 +
370    </target>
371  
372  
373 <  <target name="filter-src" depends="compile-ant">
373 >  <target name="filter-src" depends="compile-ant-filter">
374 >
375      <mkdir dir="${build.filter.src.dir}"/>
376 +
377      <copy todir="${build.filter.src.dir}">
378        <fileset dir="${src.dir}">
379          <include name="**/*.java"/>
380 +        <exclude name="**/Random.java"/>
381 +        <exclude name="**/Unsafe.java"/>
382        </fileset>
383        <filterchain>
384          <filterreader classname="jsr166.ant.filters.ReplaceFilter"
# Line 185 | Line 412
412          </filterreader>
413        </filterchain>
414      </copy>
188  </target>
415  
416 +  </target>
417  
191  <!-- Internal targets used by test target -->
418  
419    <target name="compile-tests" depends="jar">
420 +
421      <mkdir dir="${build.testcases.dir}"/>
422 +
423      <javac srcdir="${test.src.dir}"
424            destdir="${build.testcases.dir}"
425              debug="${build.debug}"
# Line 200 | Line 428
428             source="${build.sourcelevel}"
429               fork="true">
430  
431 <      <bootclasspath refid="gj.compiler.bootclasspath"/>
432 <      <compilerarg line="${gj.compiler.args}"/>
431 >      <bootclasspath refid="javac.bootclasspath"/>
432 >      <compilerarg line="${javac.args} ${build.warnings.option}"/>
433        <classpath refid="test.classpath"/>
206      <include name="**/*Test.java"/>
434  
435      </javac>
436 +
437    </target>
438  
439 +
440    <target name="run-tests" depends="compile-tests">
441 +
442 +    <!-- May be overridden by user.properties -->
443 +    <property name="testcase" value="*"/>
444 +
445      <mkdir dir="${build.reports.dir}"/>
446 +
447      <junit printsummary="true"
448               showoutput="true"
449            errorProperty="junit.failed"
450          failureProperty="junit.failed"
451 <                    dir="${build.reports.dir}">
451 >                    dir="${build.reports.dir}"
452 >                   fork="true">
453  
454 <      <classpath>
220 <        <path refid="test.classpath"/>
221 <        <pathelement location="${build.testcases.dir}"/>
222 <      </classpath>
454 >      <jvmarg value="${test.javac.args}"/>
455  
456        <formatter type="xml"/>
457  
458        <batchtest todir="${build.reports.dir}">
459          <fileset dir="${test.src.dir}">
460 <          <include name="**/*Test.java"/>
460 >          <include name="**/${testcase}Test.java"/>
461          </fileset>
462        </batchtest>
463  
464      </junit>
465 +
466    </target>
467  
468  
# Line 256 | Line 489
489    </target>
490  
491  
492 +  <target name="check-junit">
493 +    <!-- FIXME: this test isn't specific enough -->
494 +    <available property="junit.available"
495 +               classname="junit.framework.TestCase"/>
496 +    <fail message="Need JUnit 3.8 to run tests" unless="junit.available"/>
497 +  </target>
498 +
499 +
500   </project>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines