1 |
<project name="jsr166" default="usage"> |
<project name="jsr166" default="usage"> |
2 |
|
|
3 |
<description> |
<description> |
4 |
Build file for JSR-166 |
------------------------------------------------------------------------------ |
5 |
|
Build file for JSR-166 |
6 |
|
|
7 |
JUnit 3.8 or better must be in ${ant.home}/lib for the test target to work. |
Usage: ant [target] |
|
</description> |
|
8 |
|
|
9 |
|
User-specific settings are read from user.properties. |
10 |
|
See user.properties.sample for examples. |
11 |
|
------------------------------------------------------------------------------ |
12 |
|
</description> |
13 |
|
|
14 |
<target name="usage" description="Prints this message"> |
<target name="usage" description="Advises user to run with -projecthelp"> |
15 |
<echo> |
<echo>Run "ant -projecthelp" for full usage information.</echo> |
|
ant [target], where target is one of: |
|
|
|
|
|
usage (default) Prints this message |
|
|
compile Compiles all sources to build folder |
|
|
jar Builds library jar from compiled sources |
|
|
test Runs all tests (requires JUnit 1.8 in ${ant.home}/lib) |
|
|
docs Builds javadocs with custom tags to build folder |
|
|
dist-docs Builds javadocs without custom tags to dist folder |
|
|
dist Puts all distributable products in single hierarchy |
|
|
|
|
|
clean Removes all build products |
|
|
dist-clean Removes all build and distribution products |
|
|
|
|
|
checkstyle Reports on style errors in Java source (verbose, mostly chaff) |
|
|
doccheck Reports on javadoc style errors (not working yet) |
|
|
</echo> |
|
16 |
</target> |
</target> |
17 |
|
|
18 |
|
|
19 |
<!-- User-specific settings --> |
<!-- User-specific settings --> |
20 |
<property file="user.properties"/> |
<property file="user.properties"/> |
21 |
|
|
|
<!-- Set build.warnings in user.properties to turn on -warnunchecked --> |
|
|
<!-- <property name="build.warnings" value=""/> --> |
|
|
|
|
22 |
|
|
23 |
<!-- Compilation options --> |
<!-- Compilation options --> |
24 |
<property name="build.sourcelevel" value="1.5"/> |
<property name="build.sourcelevel" value="1.5"/> |
26 |
<property name="build.debug" value="true"/> |
<property name="build.debug" value="true"/> |
27 |
<property name="build.debuglevel" value="source,lines,vars"/> |
<property name="build.debuglevel" value="source,lines,vars"/> |
28 |
<property name="build.deprecation" value="false"/> |
<property name="build.deprecation" value="false"/> |
29 |
|
<property name="build.novariance.arg" value=""/> |
30 |
|
|
31 |
<!-- Build locations --> |
<!-- Build locations --> |
32 |
<property name="build.dir" location="build"/> |
<property name="build.dir" location="build"/> |
78 |
</path> |
</path> |
79 |
|
|
80 |
<!-- Flatten bootclasspath prefix into a platform-appropriate string --> |
<!-- Flatten bootclasspath prefix into a platform-appropriate string --> |
81 |
<property name="javac.bootclasspath.prefix" refid="javac.bootclasspath.prefix"/> |
<property name="javac.bootclasspath.prefix" |
82 |
|
refid="javac.bootclasspath.prefix"/> |
83 |
|
|
84 |
<!-- Turn the flattened bootclasspath prefix into a javac argument --> |
<!-- Turn the flattened bootclasspath prefix into a javac argument --> |
85 |
<property name="javac.args" value='-J-Xbootclasspath/p:${javac.bootclasspath.prefix}'/> |
<property name="build.bootclasspath.arg" |
86 |
|
value='-J-Xbootclasspath/p:${javac.bootclasspath.prefix}'/> |
87 |
|
|
88 |
|
|
89 |
<!-- |
<!-- |
101 |
<property name="test.classpath" refid="test.classpath"/> |
<property name="test.classpath" refid="test.classpath"/> |
102 |
|
|
103 |
<!-- Turn the flattened test classpath into a javac argument --> |
<!-- Turn the flattened test classpath into a javac argument --> |
104 |
<property name="test.javac.args" value='-Xbootclasspath/p:${test.classpath}'/> |
<property name="test.bootclasspath.arg" |
105 |
|
value='-Xbootclasspath/p:${test.classpath}'/> |
106 |
|
|
107 |
|
|
108 |
|
|
131 |
fork="true"> |
fork="true"> |
132 |
|
|
133 |
<bootclasspath refid="javac.bootclasspath"/> |
<bootclasspath refid="javac.bootclasspath"/> |
134 |
<compilerarg line="${javac.args} ${build.warnings.option}"/> |
<compilerarg line="${build.javac.args}"/> |
135 |
|
|
136 |
</javac> |
</javac> |
137 |
|
|
139 |
|
|
140 |
|
|
141 |
<target name="jar" |
<target name="jar" |
142 |
depends="native-jar, emulation-jar" |
depends="check-emulation, init-jar, native-jar, emulation-jar" |
143 |
description="Builds library jar from compiled sources"/> |
description="Builds library jar from compiled sources"/> |
144 |
|
|
145 |
|
|
146 |
<target name="test" |
<target name="test" |
147 |
depends="init, check-junit, report-tests" |
depends="init, check-junit, report-tests" |
148 |
description="Runs all tests (requires JUnit 3.8+ in ${ant.home}/lib)" /> |
description="Runs all tests (requires JUnit 3.8.1 in ${ant.home}/lib)" /> |
149 |
|
|
150 |
|
|
151 |
<target name="checkstyle" |
<target name="checkstyle" |
192 |
source="${build.docsourcelevel}"> |
source="${build.docsourcelevel}"> |
193 |
|
|
194 |
<tag name="revised" description="Last revised:"/> |
<tag name="revised" description="Last revised:"/> |
195 |
<tag name="spec" description="Specified by:"/> |
<tag name="spec" description="Specified by:"/> |
196 |
<tag name="editor" description="Last edited by:"/> |
<tag name="editor" description="Last edited by:"/> |
197 |
<tag name="fixme" description="FIX ME:"/> |
<tag name="fixme" description="FIX ME:"/> |
198 |
|
|
199 |
<packageset dir="${build.filter.src.dir}"/> |
<packageset dir="${build.filter.src.dir}"/> |
200 |
|
|
201 |
</javadoc> |
</javadoc> |
203 |
</target> |
</target> |
204 |
|
|
205 |
|
|
|
<!-- |
|
|
# javac -s doesn't reliably generate compilable code. It generates |
|
|
# bridge methods (marked as "synthetic") that can have identical |
|
|
# signatures to existing methods except for the return value. |
|
|
--> |
|
206 |
<target name="strip" |
<target name="strip" |
207 |
depends="init"> |
depends="init" |
208 |
|
description="Strip generics from java source (not working yet)"> |
209 |
|
|
210 |
<mkdir dir="${build.stripped.dir}"/> |
<mkdir dir="${build.stripped.dir}"/> |
211 |
|
|
212 |
|
<!-- |
213 |
|
# javac -s doesn't reliably generate compilable code. It generates |
214 |
|
# bridge methods (marked as "synthetic") that can have identical |
215 |
|
# signatures to existing methods except for the return value. |
216 |
|
--> |
217 |
<javac srcdir="${src.dir}" |
<javac srcdir="${src.dir}" |
218 |
destdir="${build.stripped.dir}" |
destdir="${build.stripped.dir}" |
219 |
debug="${build.debug}" |
debug="${build.debug}" |
223 |
fork="true"> |
fork="true"> |
224 |
|
|
225 |
<bootclasspath refid="javac.bootclasspath"/> |
<bootclasspath refid="javac.bootclasspath"/> |
226 |
<compilerarg line="${javac.args} ${build.warnings.option} -s"/> |
<compilerarg line="${build.javac.args} -s"/> |
227 |
|
|
228 |
</javac> |
</javac> |
229 |
|
|
277 |
|
|
278 |
<target name="set-warnings-if" if="build.warnings"> |
<target name="set-warnings-if" if="build.warnings"> |
279 |
|
|
280 |
<property name="build.warnings.option" value="-warnunchecked"/> |
<property name="build.warnings.arg" value="-warnunchecked"/> |
281 |
|
|
282 |
</target> |
</target> |
283 |
|
|
284 |
|
|
285 |
<target name="set-warnings-unless" unless="build.warnings"> |
<target name="set-warnings-unless" unless="build.warnings"> |
286 |
|
|
287 |
<property name="build.warnings.option" value=""/> |
<property name="build.warnings.arg" value=""/> |
288 |
|
|
289 |
</target> |
</target> |
290 |
|
|
296 |
<loadfile property="version" srcFile="version.properties"/> |
<loadfile property="version" srcFile="version.properties"/> |
297 |
<echo>Building JSR-166 version ${version}</echo> |
<echo>Building JSR-166 version ${version}</echo> |
298 |
|
|
299 |
|
<!-- Common options in javac invocations --> |
300 |
|
<property name="build.javac.args" |
301 |
|
value="${build.bootclasspath.arg} ${build.warnings.arg} ${build.novariance.arg}"/> |
302 |
|
|
303 |
</target> |
</target> |
304 |
|
|
305 |
|
|
311 |
|
|
312 |
|
|
313 |
<target name="native-jar" |
<target name="native-jar" |
314 |
depends="compile, init-jar" |
depends="compile" |
315 |
unless="build.emulation"> |
unless="build.emulation.true"> |
316 |
|
|
317 |
<jar destfile="${product.jar}"> |
<jar destfile="${product.jar}"> |
318 |
<fileset dir="${build.classes.dir}"/> |
<fileset dir="${build.classes.dir}"/> |
321 |
</target> |
</target> |
322 |
|
|
323 |
|
|
|
<target name="base-jar" |
|
|
depends="compile, init-jar"> |
|
|
|
|
|
<jar destfile="${product.jar}"> |
|
|
<fileset dir="${build.classes.dir}"> |
|
|
<patternset refid="emulation.excludes"/> |
|
|
</fileset> |
|
|
</jar> |
|
|
|
|
|
</target> |
|
|
|
|
|
|
|
324 |
<target name="compile-emulation" |
<target name="compile-emulation" |
325 |
depends="init" |
depends="init" |
326 |
if="build.emulation"> |
if="build.emulation.true"> |
327 |
|
|
328 |
<mkdir dir="${build.emulation.dir}"/> |
<mkdir dir="${build.emulation.dir}"/> |
329 |
|
|
336 |
fork="true"> |
fork="true"> |
337 |
|
|
338 |
<bootclasspath refid="javac.bootclasspath"/> |
<bootclasspath refid="javac.bootclasspath"/> |
339 |
<compilerarg line="${javac.args} ${build.warnings.option}"/> |
<compilerarg line="${build.javac.args}"/> |
340 |
|
|
341 |
</javac> |
</javac> |
342 |
|
|
344 |
|
|
345 |
|
|
346 |
<target name="emulation-jar" |
<target name="emulation-jar" |
347 |
depends="base-jar, compile-emulation" |
depends="compile-emulation" |
348 |
if="build.emulation"> |
if="build.emulation.true"> |
349 |
|
|
350 |
<jar destfile="${product.jar}" update="true" duplicate="add"> |
|
351 |
|
<jar destfile="${product.jar}" duplicate="add"> |
352 |
|
<fileset dir="${build.classes.dir}"> |
353 |
|
<patternset refid="emulation.excludes"/> |
354 |
|
</fileset> |
355 |
<fileset dir="${build.emulation.dir}"/> |
<fileset dir="${build.emulation.dir}"/> |
356 |
</jar> |
</jar> |
357 |
|
|
386 |
|
|
387 |
<copy todir="${build.filter.src.dir}"> |
<copy todir="${build.filter.src.dir}"> |
388 |
<fileset dir="${src.dir}"> |
<fileset dir="${src.dir}"> |
389 |
|
<include name="**/*.html"/> |
390 |
|
</fileset> |
391 |
|
</copy> |
392 |
|
|
393 |
|
<copy todir="${build.filter.src.dir}"> |
394 |
|
<fileset dir="${src.dir}"> |
395 |
|
<exclude name="**/*.html"/> |
396 |
<patternset refid="emulation.excludes"/> |
<patternset refid="emulation.excludes"/> |
397 |
</fileset> |
</fileset> |
398 |
<filterchain> |
<filterchain> |
444 |
source="${build.sourcelevel}" |
source="${build.sourcelevel}" |
445 |
fork="true"> |
fork="true"> |
446 |
|
|
|
<bootclasspath refid="javac.bootclasspath"/> |
|
|
<compilerarg line="${javac.args} ${build.warnings.option}"/> |
|
447 |
<classpath refid="test.classpath"/> |
<classpath refid="test.classpath"/> |
448 |
|
<bootclasspath refid="javac.bootclasspath"/> |
449 |
|
<compilerarg line="${build.javac.args}"/> |
450 |
|
|
451 |
</javac> |
</javac> |
452 |
|
|
468 |
dir="${build.reports.dir}" |
dir="${build.reports.dir}" |
469 |
fork="true"> |
fork="true"> |
470 |
|
|
471 |
<jvmarg value="${test.javac.args}"/> |
<jvmarg value="${test.bootclasspath.arg}"/> |
472 |
|
|
473 |
<formatter type="xml"/> |
<formatter type="xml"/> |
474 |
|
|
521 |
</target> |
</target> |
522 |
|
|
523 |
|
|
524 |
|
<target name="check-emulation"> |
525 |
|
<condition property="build.emulation.true"> |
526 |
|
<or> |
527 |
|
<isset property="build.emulation"/> |
528 |
|
<os family="windows"/> |
529 |
|
</or> |
530 |
|
</condition> |
531 |
|
</target> |
532 |
|
|
533 |
|
|
534 |
|
|
535 |
<!-- Anthill targets --> |
<!-- Anthill targets --> |
536 |
|
|