7 |
Usage: ant [target] |
Usage: ant [target] |
8 |
|
|
9 |
User-specific settings are read from user.properties. |
User-specific settings are read from user.properties. |
10 |
See user.properties.sample for examples. |
See user.properties.sample for an explanation of some useful settings. |
11 |
------------------------------------------------------------------------------ |
------------------------------------------------------------------------------ |
12 |
</description> |
</description> |
13 |
|
|
54 |
|
|
55 |
<!-- Jar locations --> |
<!-- Jar locations --> |
56 |
<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"/> |
|
57 |
<property name="junit.jar" location="${lib.dir}/junit.jar"/> |
<property name="junit.jar" location="${lib.dir}/junit.jar"/> |
58 |
<property name="rt.jar" location="${java.home}/lib/rt.jar"/> |
<property name="rt.jar" location="${java.home}/lib/rt.jar"/> |
59 |
|
|
60 |
|
|
61 |
|
|
62 |
<!-- |
<!-- Files excluded from dist-docs and emulation jar --> |
63 |
! Bootclasspath munging for source compilation. |
<patternset id="unsafe.exclusion"> |
|
--> |
|
|
|
|
|
<path id="javac.bootclasspath.prefix"> |
|
|
<!-- <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.prefix" refid="javac.bootclasspath.prefix"/> |
|
|
|
|
|
<!-- Turn the flattened bootclasspath prefix into a javac argument --> |
|
|
<property name="javac.args" value='-J-Xbootclasspath/p:${javac.bootclasspath.prefix}'/> |
|
|
|
|
|
|
|
|
|
|
|
<!-- |
|
|
! 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"/> |
|
|
|
|
|
<!-- Turn the flattened test classpath into a javac argument --> |
|
|
<property name="test.javac.args" value='-Xbootclasspath/p:${test.classpath}'/> |
|
|
|
|
|
|
|
|
|
|
|
<!-- Files excluded from emulation and dist-docs --> |
|
|
<patternset id="emulation.excludes"> |
|
64 |
<exclude name="java/util/Random.*"/> |
<exclude name="java/util/Random.*"/> |
65 |
<exclude name="sun/misc/Unsafe.*"/> |
<exclude name="sun/misc/Unsafe.*"/> |
66 |
</patternset> |
</patternset> |
67 |
|
|
68 |
|
<!-- Files excludes from emulation jar --> |
69 |
|
<patternset id="atomic.exclusion"> |
70 |
|
<exclude name="java/util/concurrent/atomic/AtomicBoolean*"/> |
71 |
|
<exclude name="java/util/concurrent/atomic/AtomicInteger*"/> |
72 |
|
<exclude name="java/util/concurrent/atomic/AtomicLong*"/> |
73 |
|
<exclude name="java/util/concurrent/atomic/AtomicReference*"/> |
74 |
|
</patternset> |
75 |
|
|
76 |
|
|
77 |
|
|
78 |
<!-- Main targets --> |
<!-- Main targets --> |
79 |
|
|
80 |
<target name="compile" |
<target name="compile" |
81 |
depends="init" |
depends="init, configure-compiler, prepare-src" |
82 |
description="Compiles main sources to build folder"> |
description="Compiles main sources to build folder"> |
83 |
|
|
84 |
|
<property name="prepare.src.dir" value="${src.dir}"/> |
85 |
|
|
86 |
<mkdir dir="${build.classes.dir}"/> |
<mkdir dir="${build.classes.dir}"/> |
87 |
|
|
88 |
<javac srcdir="${src.dir}" |
<!-- |
89 |
|
<echo>javac ${gjc.args}</echo> |
90 |
|
<echo>bootclasspath=${compile.bootclasspath}</echo> |
91 |
|
--> |
92 |
|
|
93 |
|
<javac srcdir="${prepare.src.dir}" |
94 |
destdir="${build.classes.dir}" |
destdir="${build.classes.dir}" |
95 |
debug="${build.debug}" |
debug="${build.debug}" |
96 |
debuglevel="${build.debuglevel}" |
debuglevel="${build.debuglevel}" |
98 |
source="${build.sourcelevel}" |
source="${build.sourcelevel}" |
99 |
fork="true"> |
fork="true"> |
100 |
|
|
101 |
<bootclasspath refid="javac.bootclasspath"/> |
<compilerarg line="${gjc.args}"/> |
102 |
<compilerarg line="${javac.args} ${build.warnings.option}"/> |
<bootclasspath refid="compile.bootclasspath"/> |
103 |
|
|
104 |
</javac> |
</javac> |
105 |
|
|
107 |
|
|
108 |
|
|
109 |
<target name="jar" |
<target name="jar" |
110 |
depends="check-emulation, init-jar, native-jar, emulation-jar" |
depends="configure-emulation, init-jar, native-jar, emulation-jar" |
111 |
description="Builds library jar from compiled sources"/> |
description="Builds library jar from compiled sources"/> |
112 |
|
|
113 |
|
|
114 |
<target name="test" |
<target name="test" |
115 |
depends="init, check-junit, report-tests" |
depends="init, configure-tests, report-tests" |
116 |
description="Runs all tests (requires JUnit 3.8.1 in ${ant.home}/lib)" /> |
description="Runs all tests (requires JUnit 3.8.1 in ${ant.home}/lib)" /> |
117 |
|
|
118 |
|
|
171 |
</target> |
</target> |
172 |
|
|
173 |
|
|
|
<!-- |
|
|
# 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. |
|
|
--> |
|
174 |
<target name="strip" |
<target name="strip" |
175 |
depends="init"> |
depends="init, configure-compiler" |
176 |
|
description="Strip generics from java source (not working yet)"> |
177 |
|
|
178 |
<mkdir dir="${build.stripped.dir}"/> |
<mkdir dir="${build.stripped.dir}"/> |
179 |
|
|
180 |
|
<!-- |
181 |
|
# javac -s doesn't reliably generate compilable code. It generates |
182 |
|
# bridge methods (marked as "synthetic") that can have identical |
183 |
|
# signatures to existing methods except for the return value. |
184 |
|
--> |
185 |
<javac srcdir="${src.dir}" |
<javac srcdir="${src.dir}" |
186 |
destdir="${build.stripped.dir}" |
destdir="${build.stripped.dir}" |
187 |
debug="${build.debug}" |
debug="${build.debug}" |
190 |
source="${build.sourcelevel}" |
source="${build.sourcelevel}" |
191 |
fork="true"> |
fork="true"> |
192 |
|
|
193 |
<bootclasspath refid="javac.bootclasspath"/> |
<compilerarg line="${gjc.args} -s"/> |
194 |
<compilerarg line="${javac.args} ${build.warnings.option} -s"/> |
<bootclasspath refid="compile.bootclasspath"/> |
195 |
|
|
196 |
</javac> |
</javac> |
197 |
|
|
202 |
depends="init, dist-clean, dist-jar, dist-docs" |
depends="init, dist-clean, dist-jar, dist-docs" |
203 |
description="Puts all distributable products in single hierarchy"/> |
description="Puts all distributable products in single hierarchy"/> |
204 |
|
|
205 |
|
<target name="release" |
206 |
|
depends="dist" |
207 |
|
description="Puts entire CVS tree, plus distribution productions, in a jar"> |
208 |
|
|
209 |
|
<delete dir="${build.dir}"/> |
210 |
|
|
211 |
|
<property name="release.jar" value="dist/jsr166-${version}-dist.jar"/> |
212 |
|
|
213 |
|
<jar basedir="${basedir}" destfile="${release.jar}"> |
214 |
|
<exclude name="${release.jar}"/> |
215 |
|
<exclude name="user.properties"/> |
216 |
|
<exclude name="etc/notes/**"/> |
217 |
|
<exclude name="lib/gjc/2.1/**"/> |
218 |
|
<exclude name="**/SyntaxTest.java"/> |
219 |
|
</jar> |
220 |
|
|
221 |
|
</target> |
222 |
|
|
223 |
<target name="clean" |
<target name="clean" |
224 |
description="Removes all build products"> |
description="Removes all build products"> |
260 |
|
|
261 |
<!-- Internal targets --> |
<!-- Internal targets --> |
262 |
|
|
|
<target name="set-warnings-if" if="build.warnings"> |
|
263 |
|
|
264 |
<property name="build.warnings.option" value="-warnunchecked"/> |
<target name="init"> |
|
|
|
|
</target> |
|
|
|
|
|
|
|
|
<target name="set-warnings-unless" unless="build.warnings"> |
|
|
|
|
|
<property name="build.warnings.option" value=""/> |
|
|
|
|
|
</target> |
|
|
|
|
|
|
|
|
<target name="init" |
|
|
depends="set-warnings-if, set-warnings-unless"> |
|
265 |
|
|
266 |
<!-- Version is kept in a separate file --> |
<!-- Version is kept in a separate file --> |
267 |
<loadfile property="version" srcFile="version.properties"/> |
<loadfile property="version" srcFile="version.properties"/> |
289 |
|
|
290 |
|
|
291 |
<target name="compile-emulation" |
<target name="compile-emulation" |
292 |
depends="init" |
depends="init, configure-compiler" |
293 |
if="build.emulation.true"> |
if="build.emulation.true"> |
294 |
|
|
295 |
<mkdir dir="${build.emulation.dir}"/> |
<mkdir dir="${build.emulation.dir}"/> |
302 |
source="${build.sourcelevel}" |
source="${build.sourcelevel}" |
303 |
fork="true"> |
fork="true"> |
304 |
|
|
305 |
<bootclasspath refid="javac.bootclasspath"/> |
<compilerarg line="${gjc.args}"/> |
306 |
<compilerarg line="${javac.args} ${build.warnings.option}"/> |
<bootclasspath refid="compile.bootclasspath"/> |
307 |
|
|
308 |
</javac> |
</javac> |
309 |
|
|
317 |
|
|
318 |
<jar destfile="${product.jar}" duplicate="add"> |
<jar destfile="${product.jar}" duplicate="add"> |
319 |
<fileset dir="${build.classes.dir}"> |
<fileset dir="${build.classes.dir}"> |
320 |
<patternset refid="emulation.excludes"/> |
<patternset refid="atomic.exclusion"/> |
321 |
|
<patternset refid="unsafe.exclusion"/> |
322 |
</fileset> |
</fileset> |
323 |
<fileset dir="${build.emulation.dir}"/> |
<fileset dir="${build.emulation.dir}"/> |
324 |
</jar> |
</jar> |
354 |
|
|
355 |
<copy todir="${build.filter.src.dir}"> |
<copy todir="${build.filter.src.dir}"> |
356 |
<fileset dir="${src.dir}"> |
<fileset dir="${src.dir}"> |
357 |
<patternset refid="emulation.excludes"/> |
<include name="**/*.html"/> |
358 |
|
</fileset> |
359 |
|
</copy> |
360 |
|
|
361 |
|
<!-- Not needed now, used for doccheck filtering: |
362 |
|
<property name="generic.declarations" |
363 |
|
value="public interface E {} public interface T {} public interface K {} public interface V {}" |
364 |
|
/> |
365 |
|
--> |
366 |
|
|
367 |
|
<copy todir="${build.filter.src.dir}"> |
368 |
|
<fileset dir="${src.dir}"> |
369 |
|
<exclude name="**/*.html"/> |
370 |
|
<patternset refid="unsafe.exclusion"/> |
371 |
</fileset> |
</fileset> |
372 |
<filterchain> |
<filterchain> |
373 |
|
|
374 |
|
<!-- |
375 |
|
# This filter gets rid of angle-bracketed type parameters |
376 |
|
# so that javadoc can run on the result. The following |
377 |
|
# heuristic seems to work: |
378 |
|
# |
379 |
|
# For all lines not starting with space(s)-asterisk-space(s), |
380 |
|
# replace <something> with a space, where there may be more |
381 |
|
# than one right angle bracket at the end, and "something" |
382 |
|
# must not contain parens or pipes. (This may need some |
383 |
|
# tweaking.) |
384 |
|
--> |
385 |
|
|
386 |
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
387 |
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.) |
|
|
--> |
|
388 |
<param name="notmatching" value="^\s+\*\s.*$"/> |
<param name="notmatching" value="^\s+\*\s.*$"/> |
389 |
<param name="pattern" value="<[^|>()]+?>+"/> |
<param name="pattern" value="<[^|>()]+?>+"/> |
390 |
<param name="replacement" value=" "/> |
<param name="replacement" value=" "/> |
391 |
</filterreader> |
</filterreader> |
392 |
|
|
393 |
|
|
394 |
|
<!-- |
395 |
|
# This filter uncomments lines beginning with "//@" so that |
396 |
|
# javadoc can see imports that are needed to resolve links |
397 |
|
# but that shouldn't be in the compiled code. |
398 |
|
--> |
399 |
|
|
400 |
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
401 |
classpath="${build.ant.dir}"> |
classpath="${build.ant.dir}"> |
402 |
<!-- |
<param name="matching" value="^//@.*$"/> |
403 |
# 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="^//@"/> |
|
404 |
<param name="replacement" value=""/> |
<param name="replacement" value=""/> |
405 |
</filterreader> |
</filterreader> |
406 |
|
|
407 |
|
|
408 |
|
<!-- |
409 |
|
# The next two filters try to make the source look like |
410 |
|
# something that doccheck can process. The first removes |
411 |
|
# -source 1.4 assertions and the second adds in a bunch |
412 |
|
# of single letter public nested marker interfaces so that |
413 |
|
# the generic type parameters are recognized. |
414 |
|
# |
415 |
|
# Currently commented out because doccheck doesn't work. :-( |
416 |
|
--> |
417 |
|
|
418 |
|
<!-- |
419 |
|
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
420 |
|
classpath="${build.ant.dir}"> |
421 |
|
<param name="matching" value="^\s*assert[\s ].*$"/> |
422 |
|
<param name="pattern" value="assert"/> |
423 |
|
<param name="replacement" value="//assert"/> |
424 |
|
</filterreader> |
425 |
|
|
426 |
|
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
427 |
|
classpath="${build.ant.dir}"> |
428 |
|
<param name="matching" value="^(.*(class|interface|implements) .*|)\{.*$"/> |
429 |
|
<param name="pattern" value="$"/> |
430 |
|
<param name="replacement" value=" ${generic.declarations}"/> |
431 |
|
</filterreader> |
432 |
|
--> |
433 |
|
|
434 |
</filterchain> |
</filterchain> |
435 |
</copy> |
</copy> |
436 |
|
|
442 |
|
|
443 |
<mkdir dir="${build.testcases.dir}"/> |
<mkdir dir="${build.testcases.dir}"/> |
444 |
|
|
445 |
|
<!-- |
446 |
|
<echo>javac ${gjc.args}</echo> |
447 |
|
<echo>bootclasspath=${test.compile.bootclasspath}</echo> |
448 |
|
<echo>classpath="${test.classpath}"</echo> |
449 |
|
--> |
450 |
|
|
451 |
<javac srcdir="${test.src.dir}" |
<javac srcdir="${test.src.dir}" |
452 |
destdir="${build.testcases.dir}" |
destdir="${build.testcases.dir}" |
453 |
debug="${build.debug}" |
debug="${build.debug}" |
456 |
source="${build.sourcelevel}" |
source="${build.sourcelevel}" |
457 |
fork="true"> |
fork="true"> |
458 |
|
|
459 |
<bootclasspath refid="javac.bootclasspath"/> |
<compilerarg line="${gjc.args}"/> |
460 |
<compilerarg line="${javac.args} ${build.warnings.option}"/> |
<bootclasspath refid="test.compile.bootclasspath"/> |
461 |
<classpath refid="test.classpath"/> |
<classpath refid="test.classpath"/> |
462 |
|
|
463 |
</javac> |
</javac> |
464 |
|
|
480 |
dir="${build.reports.dir}" |
dir="${build.reports.dir}" |
481 |
fork="true"> |
fork="true"> |
482 |
|
|
483 |
<jvmarg value="${test.javac.args}"/> |
<jvmarg value="-Xbootclasspath/p:${test.run.bootclasspath}"/> |
484 |
|
|
485 |
<formatter type="xml"/> |
<formatter type="xml"/> |
486 |
|
|
521 |
</target> |
</target> |
522 |
|
|
523 |
|
|
524 |
<target name="check-junit"> |
<target name="configure-compiler"> |
525 |
|
|
526 |
<!-- junit.framework.Protectable is in JUnit 3.8.1 but not in 3.7 --> |
<property name="gjc.version" |
527 |
<available property="junit.available" |
value="2.0"/> |
|
classname="junit.framework.Protectable"/> |
|
528 |
|
|
529 |
<fail message="Need JUnit 3.8.1 in ${ant.home}${file.separator}lib to run tests" |
<condition property="novariance.arg" value="-novariance"> |
530 |
unless="junit.available"/> |
<and> |
531 |
|
<equals arg1="${gjc.version}" arg2="2.0"/> |
532 |
|
<or> |
533 |
|
<not><isset property="gjc.novariance"/></not> |
534 |
|
<istrue value="${gjc.novariance}"/> |
535 |
|
</or> |
536 |
|
</and> |
537 |
|
</condition> |
538 |
|
|
539 |
|
<property name="novariance.arg" |
540 |
|
value=""/> |
541 |
|
|
542 |
|
<property name="gjc.dir" |
543 |
|
value="${lib.dir}/gjc"/> |
544 |
|
|
545 |
|
<property name="javac.jar" |
546 |
|
location="${gjc.dir}/${gjc.version}/javac.jar"/> |
547 |
|
|
548 |
|
<property name="collect.jar" |
549 |
|
location="${gjc.dir}/${gjc.version}/collect${novariance.arg}.jar"/> |
550 |
|
|
551 |
|
|
552 |
|
<condition property="warnunchecked.arg" value="-warnunchecked"> |
553 |
|
<istrue value="${gjc.warnunchecked}"/> |
554 |
|
</condition> |
555 |
|
|
556 |
|
<property name="warnunchecked.arg" value=""/> |
557 |
|
|
558 |
|
<condition property="prepare.src.dir" value="${build.dir}/prepare-src"> |
559 |
|
<istrue value="${build.nothreads}"/> |
560 |
|
</condition> |
561 |
|
|
562 |
|
|
563 |
|
<!-- |
564 |
|
! Bootclasspath munging for source compilation. |
565 |
|
--> |
566 |
|
|
567 |
|
<path id="pre.bootclasspath"> |
568 |
|
<pathelement location="${javac.jar}"/> |
569 |
|
</path> |
570 |
|
|
571 |
|
<path id="compile.bootclasspath"> |
572 |
|
<pathelement location="${build.classes.dir}"/> |
573 |
|
<pathelement location="${collect.jar}"/> |
574 |
|
<pathelement location="${rt.jar}"/> |
575 |
|
</path> |
576 |
|
|
577 |
|
<!-- Flatten paths into platform-appropriate strings --> |
578 |
|
<property name="pre.bootclasspath" refid="pre.bootclasspath"/> |
579 |
|
<property name="compile.bootclasspath" refid="compile.bootclasspath"/> |
580 |
|
|
581 |
|
|
582 |
|
<!-- Common options in javac invocations --> |
583 |
|
<property name="gjc.args" |
584 |
|
value="-J-Xbootclasspath/p:${pre.bootclasspath} ${warnunchecked.arg} ${novariance.arg}" |
585 |
|
/> |
586 |
|
|
587 |
</target> |
</target> |
588 |
|
|
589 |
|
|
590 |
<target name="check-emulation"> |
<target name="prepare-src" |
591 |
|
depends="configure-compiler" |
592 |
|
if="prepare.src.dir"> |
593 |
|
|
594 |
|
<mkdir dir="${prepare.src.dir}"/> |
595 |
|
<copy todir="${prepare.src.dir}"> |
596 |
|
<fileset dir="${src.dir}"> |
597 |
|
<exclude name="java/lang/**"/> |
598 |
|
</fileset> |
599 |
|
</copy> |
600 |
|
|
601 |
|
</target> |
602 |
|
|
603 |
|
|
604 |
|
<target name="configure-emulation"> |
605 |
|
|
606 |
<condition property="build.emulation.true"> |
<condition property="build.emulation.true"> |
607 |
<or> |
<or> |
608 |
<isset property="build.emulation"/> |
<and> |
609 |
<os family="windows"/> |
<os family="windows"/> |
610 |
|
<not> |
611 |
|
<isset property="build.emulation"/> |
612 |
|
</not> |
613 |
|
</and> |
614 |
|
<istrue value="${build.emulation}"/> |
615 |
</or> |
</or> |
616 |
</condition> |
</condition> |
617 |
|
|
618 |
|
</target> |
619 |
|
|
620 |
|
|
621 |
|
<target name="configure-tests" |
622 |
|
depends="configure-compiler"> |
623 |
|
|
624 |
|
<!-- junit.framework.Protectable is in JUnit 3.8.1 but not in 3.7 --> |
625 |
|
<available property="junit.available" |
626 |
|
classname="junit.framework.Protectable"/> |
627 |
|
|
628 |
|
<fail message="Need JUnit 3.8.1 in ${ant.home}${file.separator}lib to run tests" |
629 |
|
unless="junit.available"/> |
630 |
|
|
631 |
|
|
632 |
|
<!-- |
633 |
|
! Bootclasspath munging for testing, so JUnit can test our local |
634 |
|
! modifications to java.*. |
635 |
|
--> |
636 |
|
|
637 |
|
<path id="test.classpath"> |
638 |
|
<pathelement location="${product.jar}"/> |
639 |
|
<pathelement location="${build.testcases.dir}"/> |
640 |
|
<pathelement location="${junit.jar}"/> |
641 |
|
</path> |
642 |
|
|
643 |
|
<path id="test.compile.bootclasspath"> |
644 |
|
<pathelement location="${javac.jar}"/> |
645 |
|
<pathelement location="${collect.jar}"/> |
646 |
|
<pathelement location="${rt.jar}"/> |
647 |
|
</path> |
648 |
|
|
649 |
|
<path id="test.run.bootclasspath"> |
650 |
|
<pathelement location="${javac.jar}"/> |
651 |
|
<path refid="test.classpath"/> |
652 |
|
</path> |
653 |
|
|
654 |
|
<!-- Flatten test classpaths into platform-appropriate strings --> |
655 |
|
<property name="test.classpath" refid="test.classpath"/> |
656 |
|
<property name="test.compile.bootclasspath" refid="test.compile.bootclasspath"/> |
657 |
|
<property name="test.run.bootclasspath" refid="test.run.bootclasspath"/> |
658 |
|
|
659 |
</target> |
</target> |
660 |
|
|
661 |
|
|
685 |
</target> |
</target> |
686 |
|
|
687 |
|
|
688 |
|
<target name="ng" depends="test"> |
689 |
|
<java classname="SuperfluousAbstract" fork="true"> |
690 |
|
|
691 |
|
<jvmarg value="-Xbootclasspath/p:${test.run.bootclasspath}"/> |
692 |
|
|
693 |
|
</java> |
694 |
|
</target> |
695 |
|
|
696 |
|
|
697 |
</project> |
</project> |