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 an explanation of some useful settings. |
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"/> |
39 |
<property name="build.reports.dir" location="${build.dir}/reports"/> |
<property name="build.reports.dir" location="${build.dir}/reports"/> |
40 |
<property name="build.doccheck.dir" location="${build.dir}/doccheck"/> |
<property name="build.doccheck.dir" location="${build.dir}/doccheck"/> |
41 |
<property name="build.filter.src.dir" location="${build.dir}/filtersrc"/> |
<property name="build.filter.src.dir" location="${build.dir}/filtersrc"/> |
42 |
|
<property name="build.filter.doccheck.dir" location="${build.dir}/filterdocchk"/> |
43 |
|
|
44 |
<!-- Source locations --> |
<!-- Source locations --> |
45 |
<property name="src.dir" location="${basedir}/src/main"/> |
<property name="src.dir" location="${basedir}/src/main"/> |
55 |
|
|
56 |
<!-- Jar locations --> |
<!-- Jar locations --> |
57 |
<property name="product.jar" location="${build.lib.dir}/jsr166.jar"/> |
<property name="product.jar" location="${build.lib.dir}/jsr166.jar"/> |
|
<property name="javac.jar" location="${lib.dir}/javac.jar"/> |
|
|
<property name="collect.jar" location="${lib.dir}/collect.jar"/> |
|
58 |
<property name="junit.jar" location="${lib.dir}/junit.jar"/> |
<property name="junit.jar" location="${lib.dir}/junit.jar"/> |
59 |
<property name="rt.jar" location="${java.home}/lib/rt.jar"/> |
<property name="rt.jar" location="${java.home}/lib/rt.jar"/> |
60 |
|
|
61 |
|
|
|
<!-- |
|
|
! Bootclasspath munging for source compilation. |
|
|
--> |
|
|
|
|
|
<path id="javac.bootclasspath.prepend"> |
|
|
<!-- <pathelement location="${src.dir}"/> --> |
|
|
<pathelement location="${javac.jar}"/> |
|
|
</path> |
|
|
|
|
|
<path id="javac.bootclasspath"> |
|
|
<!-- <pathelement location="${src.dir}"/> --> |
|
|
<pathelement location="${collect.jar}"/> |
|
|
<pathelement location="${rt.jar}"/> |
|
|
</path> |
|
|
|
|
|
<!-- Flatten bootclasspath prefix into a platform-appropriate string --> |
|
|
<property name="javac.bootclasspath.prepend" refid="javac.bootclasspath.prepend"/> |
|
|
|
|
|
<!-- Turn the flattened bootclasspath prefix into a javac argument --> |
|
|
<property name="javac.args" value='-J-Xbootclasspath/p:${javac.bootclasspath.prepend}'/> |
|
|
|
|
|
|
|
|
<!-- |
|
|
! Bootclasspath munging for testing, so JUnit can test our local |
|
|
! modifications to java.*. |
|
|
--> |
|
|
|
|
|
<path id="test.classpath"> |
|
|
<pathelement location="${product.jar}"/> |
|
|
<pathelement location="${build.testcases.dir}"/> |
|
|
<pathelement location="${junit.jar}"/> |
|
|
</path> |
|
|
|
|
|
<!-- Flatten test classpath into a platform-appropriate string --> |
|
|
<property name="test.classpath" refid="test.classpath"/> |
|
62 |
|
|
63 |
<!-- Turn the flattened test classpath into a javac argument --> |
<!-- Files excluded from dist-docs and emulation jar --> |
64 |
<property name="test.javac.args" value='-Xbootclasspath/p:${test.classpath}'/> |
<patternset id="unsafe.exclusion"> |
65 |
|
<exclude name="java/util/Random.*"/> |
66 |
|
<exclude name="sun/misc/Unsafe.*"/> |
67 |
|
</patternset> |
68 |
|
|
69 |
|
<!-- Files excludes from emulation jar --> |
70 |
|
<patternset id="atomic.exclusion"> |
71 |
|
<exclude name="java/util/concurrent/atomic/AtomicBoolean*"/> |
72 |
|
<exclude name="java/util/concurrent/atomic/AtomicInteger*"/> |
73 |
|
<exclude name="java/util/concurrent/atomic/AtomicLong*"/> |
74 |
|
<exclude name="java/util/concurrent/atomic/AtomicReference*"/> |
75 |
|
</patternset> |
76 |
|
|
77 |
|
|
78 |
|
|
79 |
<!-- Main targets --> |
<!-- Main targets --> |
80 |
|
|
81 |
<target name="compile" depends="init" |
<target name="compile" |
82 |
|
depends="init, configure-compiler, prepare-src" |
83 |
description="Compiles main sources to build folder"> |
description="Compiles main sources to build folder"> |
84 |
|
|
85 |
|
<property name="prepare.src.dir" value="${src.dir}"/> |
86 |
|
|
87 |
<mkdir dir="${build.classes.dir}"/> |
<mkdir dir="${build.classes.dir}"/> |
88 |
|
|
89 |
<javac srcdir="${src.dir}" |
<!-- |
90 |
|
<echo>javac ${gjc.args}</echo> |
91 |
|
<echo>bootclasspath=${compile.bootclasspath}</echo> |
92 |
|
--> |
93 |
|
|
94 |
|
<javac srcdir="${prepare.src.dir}" |
95 |
destdir="${build.classes.dir}" |
destdir="${build.classes.dir}" |
96 |
debug="${build.debug}" |
debug="${build.debug}" |
97 |
debuglevel="${build.debuglevel}" |
debuglevel="${build.debuglevel}" |
99 |
source="${build.sourcelevel}" |
source="${build.sourcelevel}" |
100 |
fork="true"> |
fork="true"> |
101 |
|
|
102 |
<bootclasspath refid="javac.bootclasspath"/> |
<compilerarg line="${gjc.args}"/> |
103 |
<compilerarg line="${javac.args} ${build.warnings.option}"/> |
<bootclasspath refid="compile.bootclasspath"/> |
104 |
|
|
105 |
</javac> |
</javac> |
106 |
|
|
107 |
</target> |
</target> |
108 |
|
|
109 |
|
|
110 |
<target name="jar" depends="native-jar, emulation-jar"/> |
<target name="jar" |
111 |
|
depends="configure-emulation, init-jar, native-jar, emulation-jar" |
112 |
|
description="Builds library jar from compiled sources"/> |
113 |
|
|
114 |
|
|
115 |
<target name="test" depends="init, check-junit, report-tests" |
<target name="test" |
116 |
description="Runs all tests (requires JUnit 3.8+ in ${ant.home}/lib)" |
depends="init, configure-tests, report-tests" |
117 |
/> |
description="Runs all tests (requires JUnit 3.8.1 in ${ant.home}/lib)" /> |
118 |
|
|
119 |
|
|
120 |
<target name="checkstyle" depends="filter-src" |
<target name="checkstyle" |
121 |
|
depends="filter-src" |
122 |
description="Reports on style errors in Java source (verbose, mostly chaff)"> |
description="Reports on style errors in Java source (verbose, mostly chaff)"> |
123 |
|
|
124 |
<taskdef resource="checkstyletask.properties" |
<taskdef resource="checkstyletask.properties" |
132 |
</target> |
</target> |
133 |
|
|
134 |
|
|
135 |
<target name="doccheck" depends="filter-src" |
<target name="doccheck" |
136 |
description="Reports on javadoc style errors (not working yet)"> |
depends="filter-doccheck" |
137 |
|
description="Reports on javadoc style errors"> |
138 |
|
|
139 |
<delete dir="${build.doccheck.dir}"/> |
<delete dir="${build.doccheck.dir}"/> |
140 |
<mkdir dir="${build.doccheck.dir}"/> |
<mkdir dir="${build.doccheck.dir}"/> |
142 |
<javadoc doclet="com.sun.tools.doclets.doccheck.DocCheck" |
<javadoc doclet="com.sun.tools.doclets.doccheck.DocCheck" |
143 |
docletpath="${lib.dir}/doccheck.jar" |
docletpath="${lib.dir}/doccheck.jar" |
144 |
destdir="${build.doccheck.dir}"> |
destdir="${build.doccheck.dir}"> |
145 |
<packageset dir="${build.filter.src.dir}"/> |
<packageset dir="${build.filter.doccheck.dir}"/> |
146 |
</javadoc> |
</javadoc> |
147 |
|
|
148 |
|
<echo>DocCheck output is in ${build.doccheck.dir}</echo> |
149 |
|
|
150 |
</target> |
</target> |
151 |
|
|
152 |
|
|
153 |
<target name="docs" depends="filter-src" |
<target name="docs" |
154 |
|
depends="filter-src" |
155 |
description="Builds javadocs with custom tags to build folder"> |
description="Builds javadocs with custom tags to build folder"> |
156 |
|
|
157 |
<delete dir="${build.javadocs.dir}"/> |
<delete dir="${build.javadocs.dir}"/> |
163 |
source="${build.docsourcelevel}"> |
source="${build.docsourcelevel}"> |
164 |
|
|
165 |
<tag name="revised" description="Last revised:"/> |
<tag name="revised" description="Last revised:"/> |
166 |
<tag name="spec" description="Specified by:"/> |
<tag name="spec" description="Specified by:"/> |
167 |
<tag name="editor" description="Last edited by:"/> |
<tag name="editor" description="Last edited by:"/> |
168 |
<tag name="fixme" description="FIX ME:"/> |
<tag name="fixme" description="FIX ME:"/> |
169 |
|
|
170 |
<packageset dir="${build.filter.src.dir}"/> |
<packageset dir="${build.filter.src.dir}"/> |
171 |
|
|
172 |
</javadoc> |
</javadoc> |
174 |
</target> |
</target> |
175 |
|
|
176 |
|
|
177 |
<!-- |
<target name="strip" |
178 |
# javac -s doesn't reliably generate compilable code. It generates |
depends="init, configure-compiler" |
179 |
# bridge methods (marked as "synthetic") that can have identical |
description="Strip generics from java source (not working yet)"> |
|
# signatures to existing methods except for the return value. |
|
|
--> |
|
|
<target name="strip" depends="init"> |
|
180 |
|
|
181 |
<mkdir dir="${build.stripped.dir}"/> |
<mkdir dir="${build.stripped.dir}"/> |
182 |
|
|
183 |
|
<!-- |
184 |
|
# javac -s doesn't reliably generate compilable code. It generates |
185 |
|
# bridge methods (marked as "synthetic") that can have identical |
186 |
|
# signatures to existing methods except for the return value. |
187 |
|
--> |
188 |
<javac srcdir="${src.dir}" |
<javac srcdir="${src.dir}" |
189 |
destdir="${build.stripped.dir}" |
destdir="${build.stripped.dir}" |
190 |
debug="${build.debug}" |
debug="${build.debug}" |
193 |
source="${build.sourcelevel}" |
source="${build.sourcelevel}" |
194 |
fork="true"> |
fork="true"> |
195 |
|
|
196 |
<bootclasspath refid="javac.bootclasspath"/> |
<compilerarg line="${gjc.args} -s"/> |
197 |
<compilerarg line="${javac.args} ${build.warnings.option} -s"/> |
<bootclasspath refid="compile.bootclasspath"/> |
198 |
|
|
199 |
</javac> |
</javac> |
200 |
|
|
201 |
</target> |
</target> |
202 |
|
|
203 |
|
|
204 |
<target name="dist" depends="init, dist-clean, dist-jar, dist-docs" |
<target name="dist" |
205 |
|
depends="init, dist-clean, dist-jar, dist-docs" |
206 |
description="Puts all distributable products in single hierarchy"/> |
description="Puts all distributable products in single hierarchy"/> |
207 |
|
|
208 |
|
<target name="release" |
209 |
|
depends="dist" |
210 |
|
description="Puts entire CVS tree, plus distribution productions, in a jar"> |
211 |
|
|
212 |
|
<!-- |
213 |
|
#keep build dir? - dl |
214 |
|
<delete dir="${build.dir}"/> |
215 |
|
--> |
216 |
|
<property name="release.jar" value="dist/jsr166-${version}-dist.jar"/> |
217 |
|
|
218 |
|
<jar basedir="${basedir}" destfile="${release.jar}"> |
219 |
|
<exclude name="${release.jar}"/> |
220 |
|
<exclude name="user.properties"/> |
221 |
|
<exclude name="etc/notes/**"/> |
222 |
|
<exclude name="lib/gjc/2.1/**"/> |
223 |
|
<exclude name="**/SyntaxTest.java"/> |
224 |
|
</jar> |
225 |
|
|
226 |
|
</target> |
227 |
|
|
228 |
<target name="clean" |
<target name="clean" |
229 |
description="Removes all build products"> |
description="Removes all build products"> |
243 |
</target> |
</target> |
244 |
|
|
245 |
|
|
246 |
<!-- Anthill targets --> |
<target name="dist-docs" |
247 |
|
depends="filter-src" |
248 |
<!-- Should really run the tests instead of just the jar target --> |
description="Builds javadocs without custom tags to dist folder"> |
|
<target name="anthill-build" depends="jar, test, docs, dist-docs"/> |
|
|
|
|
|
<target name="anthill-publish"> |
|
|
<copy todir="${deployDir}/docs/private"> |
|
|
<fileset dir="${build.javadocs.dir}"/> |
|
|
</copy> |
|
|
<copy todir="${deployDir}/docs/public"> |
|
|
<fileset dir="${dist.javadocs.dir}"/> |
|
|
</copy> |
|
|
<copy tofile="${deployDir}/index.html" |
|
|
file="${basedir}/etc/anthill-index.html"/> |
|
|
<copy todir="${deployDir}/notes"> |
|
|
<fileset dir="${basedir}/etc/notes"/> |
|
|
</copy> |
|
|
</target> |
|
249 |
|
|
250 |
|
<delete dir="${dist.javadocs.dir}"/> |
251 |
|
<mkdir dir="${dist.javadocs.dir}"/> |
252 |
|
|
253 |
<!-- Internal targets --> |
<javadoc destdir="${dist.javadocs.dir}" |
254 |
|
link="http://java.sun.com/j2se/1.4.1/docs/api" |
255 |
|
overview="${src.dir}/intro.html" |
256 |
|
source="${build.docsourcelevel}"> |
257 |
|
|
258 |
<target name="set-warnings-if" if="build.warnings"> |
<packageset dir="${build.filter.src.dir}"/> |
259 |
|
|
260 |
<property name="build.warnings.option" value="-warnunchecked"/> |
</javadoc> |
261 |
|
|
262 |
</target> |
</target> |
263 |
|
|
264 |
|
|
|
<target name="set-warnings-unless" unless="build.warnings"> |
|
265 |
|
|
266 |
<property name="build.warnings.option" value=""/> |
<!-- Internal targets --> |
|
|
|
|
</target> |
|
267 |
|
|
268 |
|
|
269 |
<target name="init" depends="set-warnings-if, set-warnings-unless"> |
<target name="init"> |
270 |
|
|
271 |
<!-- Version is kept in a separate file --> |
<!-- Version is kept in a separate file --> |
272 |
<loadfile property="version" srcFile="version.properties"/> |
<loadfile property="version" srcFile="version.properties"/> |
275 |
</target> |
</target> |
276 |
|
|
277 |
|
|
278 |
<target name="native-jar" depends="compile" |
<target name="init-jar"> |
|
description="Builds library jar from compiled sources"> |
|
279 |
|
|
280 |
<mkdir dir="${build.lib.dir}"/> |
<mkdir dir="${build.lib.dir}"/> |
281 |
|
|
282 |
|
</target> |
283 |
|
|
284 |
|
|
285 |
|
<target name="native-jar" |
286 |
|
depends="compile" |
287 |
|
unless="build.emulation.true"> |
288 |
|
|
289 |
<jar destfile="${product.jar}"> |
<jar destfile="${product.jar}"> |
290 |
<fileset dir="${build.classes.dir}"/> |
<fileset dir="${build.classes.dir}"/> |
291 |
</jar> |
</jar> |
293 |
</target> |
</target> |
294 |
|
|
295 |
|
|
296 |
<target name="compile-emulation" depends="init" |
<target name="compile-emulation" |
297 |
if="build.emulation" |
depends="init, configure-compiler" |
298 |
description="Compiles emulation sources to build folder"> |
if="build.emulation.true"> |
299 |
|
|
300 |
<mkdir dir="${build.emulation.dir}"/> |
<mkdir dir="${build.emulation.dir}"/> |
301 |
|
|
307 |
source="${build.sourcelevel}" |
source="${build.sourcelevel}" |
308 |
fork="true"> |
fork="true"> |
309 |
|
|
310 |
<bootclasspath refid="javac.bootclasspath"/> |
<compilerarg line="${gjc.args}"/> |
311 |
<compilerarg line="${javac.args} ${build.warnings.option}"/> |
<bootclasspath refid="compile.bootclasspath"/> |
312 |
|
|
313 |
</javac> |
</javac> |
314 |
|
|
315 |
</target> |
</target> |
316 |
|
|
317 |
|
|
318 |
<target name="emulation-jar" depends="native-jar, compile-emulation" |
<target name="emulation-jar" |
319 |
if="build.emulation"> |
depends="compile-emulation" |
320 |
|
if="build.emulation.true"> |
321 |
|
|
322 |
|
|
323 |
<jar destfile="${product.jar}" update="true" duplicate="add"> |
<jar destfile="${product.jar}" duplicate="add"> |
324 |
|
<fileset dir="${build.classes.dir}"> |
325 |
|
<patternset refid="atomic.exclusion"/> |
326 |
|
<patternset refid="unsafe.exclusion"/> |
327 |
|
</fileset> |
328 |
<fileset dir="${build.emulation.dir}"/> |
<fileset dir="${build.emulation.dir}"/> |
329 |
</jar> |
</jar> |
330 |
|
|
331 |
</target> |
</target> |
332 |
|
|
333 |
|
|
334 |
<target name="dist-jar" depends="clean, jar"> |
<target name="dist-jar" |
335 |
|
depends="clean, jar"> |
336 |
|
|
337 |
<copy file="${product.jar}" todir="${dist.dir}"/> |
<copy file="${product.jar}" todir="${dist.dir}"/> |
338 |
|
|
339 |
</target> |
</target> |
340 |
|
|
341 |
|
|
342 |
<target name="dist-docs" depends="filter-src" |
<target name="compile-ant-filter" |
343 |
description="Builds javadocs without custom tags to dist folder"> |
depends="init"> |
|
|
|
|
<delete dir="${dist.javadocs.dir}"/> |
|
|
<mkdir dir="${dist.javadocs.dir}"/> |
|
|
|
|
|
<javadoc destdir="${dist.javadocs.dir}" |
|
|
link="http://java.sun.com/j2se/1.4.1/docs/api" |
|
|
overview="${src.dir}/intro.html" |
|
|
source="${build.docsourcelevel}"> |
|
|
|
|
|
<packageset dir="${build.filter.src.dir}"/> |
|
|
|
|
|
</javadoc> |
|
|
|
|
|
</target> |
|
|
|
|
|
|
|
|
<target name="compile-ant-filter" depends="init"> |
|
344 |
|
|
345 |
<mkdir dir="${build.ant.dir}"/> |
<mkdir dir="${build.ant.dir}"/> |
346 |
|
|
352 |
</target> |
</target> |
353 |
|
|
354 |
|
|
355 |
<target name="filter-src" depends="compile-ant-filter"> |
<target name="filter-src" |
356 |
|
depends="compile-ant-filter"> |
357 |
|
|
358 |
<mkdir dir="${build.filter.src.dir}"/> |
<mkdir dir="${build.filter.src.dir}"/> |
359 |
|
|
360 |
<copy todir="${build.filter.src.dir}"> |
<copy todir="${build.filter.src.dir}"> |
361 |
<fileset dir="${src.dir}"> |
<fileset dir="${src.dir}"> |
362 |
<include name="**/*.java"/> |
<include name="**/*.html"/> |
363 |
<exclude name="**/Random.java"/> |
</fileset> |
364 |
<exclude name="**/Unsafe.java"/> |
</copy> |
365 |
|
|
366 |
|
<copy todir="${build.filter.src.dir}"> |
367 |
|
<fileset dir="${src.dir}"> |
368 |
|
<exclude name="**/*.html"/> |
369 |
|
<patternset refid="unsafe.exclusion"/> |
370 |
</fileset> |
</fileset> |
371 |
<filterchain> |
<filterchain> |
372 |
|
|
373 |
|
<!-- |
374 |
|
# This filter gets rid of angle-bracketed type parameters |
375 |
|
# so that javadoc can run on the result. The following |
376 |
|
# heuristic seems to work: |
377 |
|
# |
378 |
|
# For all lines not starting with space(s)-asterisk-space(s), |
379 |
|
# replace <something> with a space, where there may be more |
380 |
|
# than one right angle bracket at the end, and "something" |
381 |
|
# must not contain parens or pipes. (This may need some |
382 |
|
# tweaking.) |
383 |
|
--> |
384 |
|
|
385 |
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
386 |
classpath="${build.ant.dir}"> |
classpath="${build.ant.dir}"> |
|
<!-- |
|
|
# These arguments are to get rid of angle-bracketed type |
|
|
# parameters so that javadoc can run on the result. The |
|
|
# following heuristic that seems to work: |
|
|
# |
|
|
# For all lines not starting with space(s)-asterisk-space(s), |
|
|
# replace <something> with a space, where there may be more |
|
|
# than one right angle bracket at the end, and "something" |
|
|
# must not contain parens or pipes. (This may need some |
|
|
# tweaking.) |
|
|
--> |
|
387 |
<param name="notmatching" value="^\s+\*\s.*$"/> |
<param name="notmatching" value="^\s+\*\s.*$"/> |
388 |
<param name="pattern" value="<[^|>()]+?>+"/> |
<param name="pattern" value="<[^|>()]+?>+"/> |
389 |
<param name="replacement" value=" "/> |
<param name="replacement" value=" "/> |
390 |
</filterreader> |
</filterreader> |
391 |
|
|
392 |
|
|
393 |
|
<!-- |
394 |
|
# This filter uncomments lines beginning with "//@" so that |
395 |
|
# javadoc can see imports that are needed to resolve links |
396 |
|
# but that shouldn't be in the compiled code. |
397 |
|
--> |
398 |
|
|
399 |
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
400 |
classpath="${build.ant.dir}"> |
classpath="${build.ant.dir}"> |
401 |
<!-- |
<param name="matching" value="^//@.*$"/> |
402 |
# These arguments are to uncomment lines beginning with |
<param name="pattern" value="^//@"/> |
|
# "//@" so that javadoc can see imports that are needed |
|
|
# to resolve links but that shouldn't be in the compiled |
|
|
# code. |
|
|
--> |
|
|
<param name="matching" value="^//@.*$"/> |
|
|
<param name="pattern" value="^//@"/> |
|
403 |
<param name="replacement" value=""/> |
<param name="replacement" value=""/> |
404 |
</filterreader> |
</filterreader> |
405 |
</filterchain> |
</filterchain> |
408 |
</target> |
</target> |
409 |
|
|
410 |
|
|
411 |
<target name="compile-tests" depends="jar"> |
|
412 |
|
|
413 |
|
<target name="filter-doccheck" |
414 |
|
depends="filter-src"> |
415 |
|
|
416 |
|
<mkdir dir="${build.filter.doccheck.dir}"/> |
417 |
|
|
418 |
|
<copy todir="${build.filter.doccheck.dir}"> |
419 |
|
<fileset dir="${build.filter.src.dir}"> |
420 |
|
<include name="**/*.html"/> |
421 |
|
</fileset> |
422 |
|
</copy> |
423 |
|
|
424 |
|
<property name="generic.declarations" |
425 |
|
value="/** Fake type parameter. */ public interface E {} /** Fake type parameter. */ public interface T {} /** Fake type parameter. */ public interface K {} /** Fake type parameter. */ public interface V {}" |
426 |
|
/> |
427 |
|
|
428 |
|
<copy todir="${build.filter.doccheck.dir}"> |
429 |
|
<fileset dir="${build.filter.src.dir}"> |
430 |
|
<exclude name="**/*.html"/> |
431 |
|
</fileset> |
432 |
|
<filterchain> |
433 |
|
<!-- |
434 |
|
# These two filters try to make the source look like |
435 |
|
# something that doccheck can process. The first removes |
436 |
|
# -source 1.4 assertions and the second adds in a bunch |
437 |
|
# of single letter public nested marker interfaces so that |
438 |
|
# the generic type parameters are recognized. |
439 |
|
--> |
440 |
|
|
441 |
|
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
442 |
|
classpath="${build.ant.dir}"> |
443 |
|
<param name="matching" value="^\s*assert[\s ].*$"/> |
444 |
|
<param name="pattern" value="assert"/> |
445 |
|
<param name="replacement" value="//assert"/> |
446 |
|
</filterreader> |
447 |
|
|
448 |
|
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
449 |
|
classpath="${build.ant.dir}"> |
450 |
|
<param name="matching" value="^([^*]*(class|interface|implements) .*|)\{.*$"/> |
451 |
|
<param name="pattern" value="$"/> |
452 |
|
<param name="replacement" value=" ${generic.declarations}"/> |
453 |
|
</filterreader> |
454 |
|
|
455 |
|
</filterchain> |
456 |
|
</copy> |
457 |
|
|
458 |
|
</target> |
459 |
|
|
460 |
|
|
461 |
|
<target name="compile-tests" |
462 |
|
depends="jar"> |
463 |
|
|
464 |
<mkdir dir="${build.testcases.dir}"/> |
<mkdir dir="${build.testcases.dir}"/> |
465 |
|
|
466 |
|
<!-- |
467 |
|
<echo>javac ${gjc.args}</echo> |
468 |
|
<echo>bootclasspath=${test.compile.bootclasspath}</echo> |
469 |
|
<echo>classpath="${test.classpath}"</echo> |
470 |
|
--> |
471 |
|
|
472 |
<javac srcdir="${test.src.dir}" |
<javac srcdir="${test.src.dir}" |
473 |
destdir="${build.testcases.dir}" |
destdir="${build.testcases.dir}" |
474 |
debug="${build.debug}" |
debug="${build.debug}" |
477 |
source="${build.sourcelevel}" |
source="${build.sourcelevel}" |
478 |
fork="true"> |
fork="true"> |
479 |
|
|
480 |
<bootclasspath refid="javac.bootclasspath"/> |
<compilerarg line="${gjc.args}"/> |
481 |
<compilerarg line="${javac.args} ${build.warnings.option}"/> |
<bootclasspath refid="test.compile.bootclasspath"/> |
482 |
<classpath refid="test.classpath"/> |
<classpath refid="test.classpath"/> |
483 |
|
|
484 |
</javac> |
</javac> |
485 |
|
|
486 |
</target> |
</target> |
487 |
|
|
488 |
|
|
489 |
<target name="run-tests" depends="compile-tests"> |
<target name="run-tests" |
490 |
|
depends="compile-tests"> |
491 |
|
|
492 |
<!-- May be overridden by user.properties --> |
<!-- May be overridden by user.properties --> |
493 |
<property name="testcase" value="*"/> |
<property name="testcase" value="*"/> |
501 |
dir="${build.reports.dir}" |
dir="${build.reports.dir}" |
502 |
fork="true"> |
fork="true"> |
503 |
|
|
504 |
<jvmarg value="${test.javac.args}"/> |
<jvmarg value="-Xbootclasspath/p:${test.run.bootclasspath}"/> |
505 |
|
|
506 |
<formatter type="xml"/> |
<formatter type="xml"/> |
507 |
|
|
516 |
</target> |
</target> |
517 |
|
|
518 |
|
|
519 |
<target name="report-tests" depends="run-tests"> |
<target name="report-tests" |
520 |
|
depends="run-tests"> |
521 |
|
|
522 |
<!-- Sets junit.report.format to frames if Xalan is present, |
<!-- Sets junit.report.format to frames if Xalan is present, |
523 |
otherwise sets it to noframes. --> |
otherwise sets it to noframes. --> |
524 |
<available property="junit.report.format" |
<available property="junit.report.format" |
538 |
</junitreport> |
</junitreport> |
539 |
|
|
540 |
<fail message="Test Cases Failed" if="junit.failed"/> |
<fail message="Test Cases Failed" if="junit.failed"/> |
541 |
|
|
542 |
|
</target> |
543 |
|
|
544 |
|
|
545 |
|
<target name="configure-compiler"> |
546 |
|
|
547 |
|
<property name="gjc.version" |
548 |
|
value="2.2"/> |
549 |
|
|
550 |
|
<condition property="novariance.arg" value="-novariance"> |
551 |
|
<and> |
552 |
|
<equals arg1="${gjc.version}" arg2="2.0"/> |
553 |
|
<or> |
554 |
|
<not><isset property="gjc.novariance"/></not> |
555 |
|
<istrue value="${gjc.novariance}"/> |
556 |
|
</or> |
557 |
|
</and> |
558 |
|
</condition> |
559 |
|
|
560 |
|
<property name="novariance.arg" |
561 |
|
value=""/> |
562 |
|
|
563 |
|
<property name="gjc.dir" |
564 |
|
value="${lib.dir}/gjc"/> |
565 |
|
|
566 |
|
<property name="javac.jar" |
567 |
|
location="${gjc.dir}/${gjc.version}/javac.jar"/> |
568 |
|
|
569 |
|
<property name="collect.jar" |
570 |
|
location="${gjc.dir}/${gjc.version}/collect${novariance.arg}.jar"/> |
571 |
|
|
572 |
|
|
573 |
|
<condition property="warnunchecked.arg" value="-warnunchecked"> |
574 |
|
<istrue value="${gjc.warnunchecked}"/> |
575 |
|
</condition> |
576 |
|
|
577 |
|
<property name="warnunchecked.arg" value=""/> |
578 |
|
|
579 |
|
<condition property="prepare.src.dir" value="${build.dir}/prepare-src"> |
580 |
|
<istrue value="${build.nothreads}"/> |
581 |
|
</condition> |
582 |
|
|
583 |
|
|
584 |
|
<!-- |
585 |
|
! Bootclasspath munging for source compilation. |
586 |
|
--> |
587 |
|
|
588 |
|
<path id="pre.bootclasspath"> |
589 |
|
<pathelement location="${javac.jar}"/> |
590 |
|
</path> |
591 |
|
|
592 |
|
<path id="compile.bootclasspath"> |
593 |
|
<pathelement location="${build.classes.dir}"/> |
594 |
|
<pathelement location="${collect.jar}"/> |
595 |
|
<pathelement location="${rt.jar}"/> |
596 |
|
</path> |
597 |
|
|
598 |
|
<!-- Flatten paths into platform-appropriate strings --> |
599 |
|
<property name="pre.bootclasspath" refid="pre.bootclasspath"/> |
600 |
|
<property name="compile.bootclasspath" refid="compile.bootclasspath"/> |
601 |
|
|
602 |
|
|
603 |
|
<!-- Common options in javac invocations --> |
604 |
|
<property name="gjc.args" |
605 |
|
value="-J-Xbootclasspath/p:${pre.bootclasspath} ${warnunchecked.arg} ${novariance.arg}" |
606 |
|
/> |
607 |
|
|
608 |
|
</target> |
609 |
|
|
610 |
|
|
611 |
|
<target name="prepare-src" |
612 |
|
depends="configure-compiler" |
613 |
|
if="prepare.src.dir"> |
614 |
|
|
615 |
|
<mkdir dir="${prepare.src.dir}"/> |
616 |
|
<copy todir="${prepare.src.dir}"> |
617 |
|
<fileset dir="${src.dir}"> |
618 |
|
<exclude name="java/lang/**"/> |
619 |
|
</fileset> |
620 |
|
</copy> |
621 |
|
|
622 |
</target> |
</target> |
623 |
|
|
624 |
|
|
625 |
<target name="check-junit"> |
<target name="configure-emulation"> |
626 |
<!-- FIXME: this test isn't specific enough --> |
|
627 |
|
<condition property="build.emulation.true"> |
628 |
|
<or> |
629 |
|
<and> |
630 |
|
<os family="windows"/> |
631 |
|
<not> |
632 |
|
<isset property="build.emulation"/> |
633 |
|
</not> |
634 |
|
</and> |
635 |
|
<istrue value="${build.emulation}"/> |
636 |
|
</or> |
637 |
|
</condition> |
638 |
|
|
639 |
|
</target> |
640 |
|
|
641 |
|
|
642 |
|
<target name="configure-tests" |
643 |
|
depends="configure-compiler"> |
644 |
|
|
645 |
|
<!-- junit.framework.Protectable is in JUnit 3.8.1 but not in 3.7 --> |
646 |
<available property="junit.available" |
<available property="junit.available" |
647 |
classname="junit.framework.TestCase"/> |
classname="junit.framework.Protectable"/> |
648 |
<fail message="Need JUnit 3.8 to run tests" unless="junit.available"/> |
|
649 |
|
<fail message="Need JUnit 3.8.1 in ${ant.home}${file.separator}lib to run tests" |
650 |
|
unless="junit.available"/> |
651 |
|
|
652 |
|
|
653 |
|
<!-- |
654 |
|
! Bootclasspath munging for testing, so JUnit can test our local |
655 |
|
! modifications to java.*. |
656 |
|
--> |
657 |
|
|
658 |
|
<path id="test.classpath"> |
659 |
|
<pathelement location="${product.jar}"/> |
660 |
|
<pathelement location="${build.testcases.dir}"/> |
661 |
|
<pathelement location="${junit.jar}"/> |
662 |
|
</path> |
663 |
|
|
664 |
|
<path id="test.compile.bootclasspath"> |
665 |
|
<pathelement location="${javac.jar}"/> |
666 |
|
<pathelement location="${collect.jar}"/> |
667 |
|
<pathelement location="${rt.jar}"/> |
668 |
|
</path> |
669 |
|
|
670 |
|
<path id="test.run.bootclasspath"> |
671 |
|
<pathelement location="${javac.jar}"/> |
672 |
|
<path refid="test.classpath"/> |
673 |
|
</path> |
674 |
|
|
675 |
|
<!-- Flatten test classpaths into platform-appropriate strings --> |
676 |
|
<property name="test.classpath" refid="test.classpath"/> |
677 |
|
<property name="test.compile.bootclasspath" refid="test.compile.bootclasspath"/> |
678 |
|
<property name="test.run.bootclasspath" refid="test.run.bootclasspath"/> |
679 |
|
|
680 |
|
</target> |
681 |
|
|
682 |
|
|
683 |
|
|
684 |
|
<!-- Anthill targets --> |
685 |
|
|
686 |
|
<target name="anthill-build" |
687 |
|
depends="jar, test, docs, dist-docs"/> |
688 |
|
|
689 |
|
<target name="anthill-publish"> |
690 |
|
|
691 |
|
<copy todir="${deployDir}/docs/private"> |
692 |
|
<fileset dir="${build.javadocs.dir}"/> |
693 |
|
</copy> |
694 |
|
|
695 |
|
<copy todir="${deployDir}/docs/public"> |
696 |
|
<fileset dir="${dist.javadocs.dir}"/> |
697 |
|
</copy> |
698 |
|
|
699 |
|
<copy tofile="${deployDir}/index.html" |
700 |
|
file="${basedir}/etc/anthill-index.html"/> |
701 |
|
|
702 |
|
<copy todir="${deployDir}/notes"> |
703 |
|
<fileset dir="${basedir}/etc/notes"/> |
704 |
|
</copy> |
705 |
|
|
706 |
|
</target> |
707 |
|
|
708 |
|
|
709 |
|
<target name="ng" depends="test"> |
710 |
|
<java classname="SuperfluousAbstract" fork="true"> |
711 |
|
|
712 |
|
<jvmarg value="-Xbootclasspath/p:${test.run.bootclasspath}"/> |
713 |
|
|
714 |
|
</java> |
715 |
</target> |
</target> |
716 |
|
|
717 |
|
|