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"/> |
57 |
<property name="product.jar" location="${build.lib.dir}/jsr166.jar"/> |
<property name="product.jar" location="${build.lib.dir}/jsr166.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 |
|
<property name="sinjdoc.jar" location="${lib.dir}/sinjdoc.jar"/> |
61 |
|
|
62 |
|
|
63 |
|
<!-- Files excluded from dist-docs and emulation jar --> |
64 |
<!-- Files excluded from emulation and dist-docs --> |
<patternset id="unsafe.exclusion"> |
|
<patternset id="emulation.excludes"> |
|
65 |
<exclude name="java/util/Random.*"/> |
<exclude name="java/util/Random.*"/> |
66 |
<exclude name="sun/misc/Unsafe.*"/> |
<exclude name="sun/misc/Unsafe.*"/> |
67 |
</patternset> |
</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" |
<target name="compile" |
82 |
depends="init, configure-compiler" |
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="${build.javac.args}"/> |
<bootclasspath refid="compile.bootclasspath"/> |
104 |
|
|
105 |
</javac> |
</javac> |
106 |
|
|
133 |
|
|
134 |
|
|
135 |
<target name="doccheck" |
<target name="doccheck" |
136 |
depends="filter-src" |
depends="filter-doccheck" |
137 |
description="Reports on javadoc style errors (not working yet)"> |
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 |
|
|
174 |
</target> |
</target> |
175 |
|
|
176 |
|
|
177 |
|
<target name="sinjdocs" |
178 |
|
depends="configure-tests" |
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 |
|
<java classname="net.cscott.sinjdoc.Main" fork="true"> |
185 |
|
|
186 |
|
<jvmarg value="-Xbootclasspath/p:${test.run.bootclasspath}"/> |
187 |
|
|
188 |
|
<classpath> |
189 |
|
<pathelement location="${sinjdoc.jar}"/> |
190 |
|
<path refid="test.classpath"/> |
191 |
|
</classpath> |
192 |
|
|
193 |
|
<!-- <arg value="-link"/> <arg value="http://java.sun.com/j2se/1.4.1/docs/api"/> --> |
194 |
|
|
195 |
|
<arg value="-d"/> <arg value="${build.javadocs.dir}"/> |
196 |
|
<arg value="-sourcepath"/> <arg value="${src.dir}"/> |
197 |
|
<arg value="-overview"/> <arg value="${src.dir}/intro.html"/> |
198 |
|
<arg value="-source"/> <arg value="1.5"/> |
199 |
|
<arg value="-verbose"/> |
200 |
|
<arg value="java.util"/> |
201 |
|
|
202 |
|
<!-- |
203 |
|
<arg value="-help"/> |
204 |
|
--> |
205 |
|
|
206 |
|
</java> |
207 |
|
|
208 |
|
</target> |
209 |
|
|
210 |
|
|
211 |
<target name="strip" |
<target name="strip" |
212 |
depends="init, configure-compiler" |
depends="init, configure-compiler" |
213 |
description="Strip generics from java source (not working yet)"> |
description="Strip generics from java source (not working yet)"> |
227 |
source="${build.sourcelevel}" |
source="${build.sourcelevel}" |
228 |
fork="true"> |
fork="true"> |
229 |
|
|
230 |
<bootclasspath refid="javac.bootclasspath"/> |
<compilerarg line="${gjc.args} -s"/> |
231 |
<compilerarg line="${build.javac.args} -s"/> |
<bootclasspath refid="compile.bootclasspath"/> |
232 |
|
|
233 |
</javac> |
</javac> |
234 |
|
|
239 |
depends="init, dist-clean, dist-jar, dist-docs" |
depends="init, dist-clean, dist-jar, dist-docs" |
240 |
description="Puts all distributable products in single hierarchy"/> |
description="Puts all distributable products in single hierarchy"/> |
241 |
|
|
242 |
|
<target name="release" |
243 |
|
depends="dist" |
244 |
|
description="Puts entire CVS tree, plus distribution productions, in a jar"> |
245 |
|
|
246 |
|
<!-- |
247 |
|
#keep build dir? - dl |
248 |
|
<delete dir="${build.dir}"/> |
249 |
|
--> |
250 |
|
<property name="release.jar" value="dist/jsr166-${version}-dist.jar"/> |
251 |
|
|
252 |
|
<jar basedir="${basedir}" destfile="${release.jar}"> |
253 |
|
<exclude name="${release.jar}"/> |
254 |
|
<exclude name="user.properties"/> |
255 |
|
<exclude name="etc/notes/**"/> |
256 |
|
<exclude name="lib/gjc/2.1/**"/> |
257 |
|
<exclude name="**/SyntaxTest.java"/> |
258 |
|
</jar> |
259 |
|
|
260 |
|
</target> |
261 |
|
|
262 |
<target name="clean" |
<target name="clean" |
263 |
description="Removes all build products"> |
description="Removes all build products"> |
341 |
source="${build.sourcelevel}" |
source="${build.sourcelevel}" |
342 |
fork="true"> |
fork="true"> |
343 |
|
|
344 |
<bootclasspath refid="javac.bootclasspath"/> |
<compilerarg line="${gjc.args}"/> |
345 |
<compilerarg line="${build.javac.args}"/> |
<bootclasspath refid="compile.bootclasspath"/> |
346 |
|
|
347 |
</javac> |
</javac> |
348 |
|
|
356 |
|
|
357 |
<jar destfile="${product.jar}" duplicate="add"> |
<jar destfile="${product.jar}" duplicate="add"> |
358 |
<fileset dir="${build.classes.dir}"> |
<fileset dir="${build.classes.dir}"> |
359 |
<patternset refid="emulation.excludes"/> |
<patternset refid="atomic.exclusion"/> |
360 |
|
<patternset refid="unsafe.exclusion"/> |
361 |
</fileset> |
</fileset> |
362 |
<fileset dir="${build.emulation.dir}"/> |
<fileset dir="${build.emulation.dir}"/> |
363 |
</jar> |
</jar> |
400 |
<copy todir="${build.filter.src.dir}"> |
<copy todir="${build.filter.src.dir}"> |
401 |
<fileset dir="${src.dir}"> |
<fileset dir="${src.dir}"> |
402 |
<exclude name="**/*.html"/> |
<exclude name="**/*.html"/> |
403 |
<patternset refid="emulation.excludes"/> |
<patternset refid="unsafe.exclusion"/> |
404 |
</fileset> |
</fileset> |
405 |
<filterchain> |
<filterchain> |
406 |
|
|
407 |
|
<!-- |
408 |
|
# This filter gets rid of angle-bracketed type parameters |
409 |
|
# so that javadoc can run on the result. The following |
410 |
|
# heuristic seems to work: |
411 |
|
# |
412 |
|
# For all lines not starting with space(s)-asterisk-space(s), |
413 |
|
# replace <something> with a space, where there may be more |
414 |
|
# than one right angle bracket at the end, and "something" |
415 |
|
# must not contain parens or pipes. (This may need some |
416 |
|
# tweaking.) |
417 |
|
--> |
418 |
|
|
419 |
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
420 |
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.) |
|
|
--> |
|
421 |
<param name="notmatching" value="^\s+\*\s.*$"/> |
<param name="notmatching" value="^\s+\*\s.*$"/> |
422 |
<param name="pattern" value="<[^|>()]+?>+"/> |
<param name="pattern" value="<[^|>()]+?>+"/> |
423 |
<param name="replacement" value=" "/> |
<param name="replacement" value=" "/> |
424 |
</filterreader> |
</filterreader> |
425 |
|
|
426 |
|
|
427 |
|
<!-- |
428 |
|
# This filter uncomments lines beginning with "//@" so that |
429 |
|
# javadoc can see imports that are needed to resolve links |
430 |
|
# but that shouldn't be in the compiled code. |
431 |
|
--> |
432 |
|
|
433 |
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
434 |
classpath="${build.ant.dir}"> |
classpath="${build.ant.dir}"> |
435 |
<!-- |
<param name="matching" value="^//@.*$"/> |
436 |
# 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="^//@"/> |
|
437 |
<param name="replacement" value=""/> |
<param name="replacement" value=""/> |
438 |
</filterreader> |
</filterreader> |
439 |
</filterchain> |
</filterchain> |
442 |
</target> |
</target> |
443 |
|
|
444 |
|
|
445 |
|
|
446 |
|
|
447 |
|
<target name="filter-doccheck" |
448 |
|
depends="filter-src"> |
449 |
|
|
450 |
|
<mkdir dir="${build.filter.doccheck.dir}"/> |
451 |
|
|
452 |
|
<copy todir="${build.filter.doccheck.dir}"> |
453 |
|
<fileset dir="${build.filter.src.dir}"> |
454 |
|
<include name="**/*.html"/> |
455 |
|
</fileset> |
456 |
|
</copy> |
457 |
|
|
458 |
|
<property name="generic.declarations" |
459 |
|
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 {}" |
460 |
|
/> |
461 |
|
|
462 |
|
<copy todir="${build.filter.doccheck.dir}"> |
463 |
|
<fileset dir="${build.filter.src.dir}"> |
464 |
|
<exclude name="**/*.html"/> |
465 |
|
</fileset> |
466 |
|
<filterchain> |
467 |
|
<!-- |
468 |
|
# These two filters try to make the source look like |
469 |
|
# something that doccheck can process. The first removes |
470 |
|
# -source 1.4 assertions and the second adds in a bunch |
471 |
|
# of single letter public nested marker interfaces so that |
472 |
|
# the generic type parameters are recognized. |
473 |
|
--> |
474 |
|
|
475 |
|
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
476 |
|
classpath="${build.ant.dir}"> |
477 |
|
<param name="matching" value="^\s*assert[\s ].*$"/> |
478 |
|
<param name="pattern" value="assert"/> |
479 |
|
<param name="replacement" value="//assert"/> |
480 |
|
</filterreader> |
481 |
|
|
482 |
|
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
483 |
|
classpath="${build.ant.dir}"> |
484 |
|
<param name="matching" value="^([^*]*(class|interface|implements) .*|)\{.*$"/> |
485 |
|
<param name="pattern" value="$"/> |
486 |
|
<param name="replacement" value=" ${generic.declarations}"/> |
487 |
|
</filterreader> |
488 |
|
|
489 |
|
</filterchain> |
490 |
|
</copy> |
491 |
|
|
492 |
|
</target> |
493 |
|
|
494 |
|
|
495 |
<target name="compile-tests" |
<target name="compile-tests" |
496 |
depends="jar"> |
depends="jar"> |
497 |
|
|
498 |
<mkdir dir="${build.testcases.dir}"/> |
<mkdir dir="${build.testcases.dir}"/> |
499 |
|
|
500 |
|
<!-- |
501 |
|
<echo>javac ${gjc.args}</echo> |
502 |
|
<echo>bootclasspath=${test.compile.bootclasspath}</echo> |
503 |
|
<echo>classpath="${test.classpath}"</echo> |
504 |
|
--> |
505 |
|
|
506 |
<javac srcdir="${test.src.dir}" |
<javac srcdir="${test.src.dir}" |
507 |
destdir="${build.testcases.dir}" |
destdir="${build.testcases.dir}" |
508 |
debug="${build.debug}" |
debug="${build.debug}" |
511 |
source="${build.sourcelevel}" |
source="${build.sourcelevel}" |
512 |
fork="true"> |
fork="true"> |
513 |
|
|
514 |
<classpath refid="test.classpath"/> |
<compilerarg line="${gjc.args}"/> |
515 |
<bootclasspath refid="javac.bootclasspath"/> |
<bootclasspath refid="test.compile.bootclasspath"/> |
516 |
<compilerarg line="${build.javac.args}"/> |
<classpath refid="test.classpath"/> |
517 |
|
|
518 |
</javac> |
</javac> |
519 |
|
|
535 |
dir="${build.reports.dir}" |
dir="${build.reports.dir}" |
536 |
fork="true"> |
fork="true"> |
537 |
|
|
538 |
<jvmarg value="${test.bootclasspath.arg}"/> |
<jvmarg value="-Xbootclasspath/p:${test.run.bootclasspath}"/> |
539 |
|
|
540 |
<formatter type="xml"/> |
<formatter type="xml"/> |
541 |
|
|
579 |
<target name="configure-compiler"> |
<target name="configure-compiler"> |
580 |
|
|
581 |
<property name="gjc.version" |
<property name="gjc.version" |
582 |
value="1.3"/> |
value="2.2"/> |
583 |
|
|
584 |
<condition property="build.novariance" value="-novariance"> |
<condition property="novariance.arg" value="-novariance"> |
585 |
<and> |
<and> |
586 |
<equals arg1="${gjc.version}" arg2="2.0"/> |
<equals arg1="${gjc.version}" arg2="2.0"/> |
587 |
<or> |
<or> |
591 |
</and> |
</and> |
592 |
</condition> |
</condition> |
593 |
|
|
594 |
<property name="build.novariance" |
<property name="novariance.arg" |
595 |
value=""/> |
value=""/> |
596 |
|
|
597 |
<property name="gjc.dir" |
<property name="gjc.dir" |
601 |
location="${gjc.dir}/${gjc.version}/javac.jar"/> |
location="${gjc.dir}/${gjc.version}/javac.jar"/> |
602 |
|
|
603 |
<property name="collect.jar" |
<property name="collect.jar" |
604 |
location="${gjc.dir}/${gjc.version}/collect${build.novariance}.jar"/> |
location="${gjc.dir}/${gjc.version}/collect${novariance.arg}.jar"/> |
605 |
|
|
606 |
|
|
607 |
<condition property="build.warnunchecked" value="-warnunchecked"> |
<condition property="warnunchecked.arg" value="-warnunchecked"> |
608 |
<istrue value="${gjc.warnunchecked}"/> |
<istrue value="${gjc.warnunchecked}"/> |
609 |
</condition> |
</condition> |
610 |
|
|
611 |
<property name="build.warnunchecked" value=""/> |
<property name="warnunchecked.arg" value=""/> |
612 |
|
|
613 |
|
<condition property="prepare.src.dir" value="${build.dir}/prepare-src"> |
614 |
|
<istrue value="${build.nothreads}"/> |
615 |
|
</condition> |
616 |
|
|
617 |
|
|
618 |
<!-- |
<!-- |
619 |
! Bootclasspath munging for source compilation. |
! Bootclasspath munging for source compilation. |
620 |
--> |
--> |
621 |
|
|
622 |
<path id="javac.bootclasspath.prefix"> |
<path id="pre.bootclasspath"> |
|
<!-- <pathelement location="${src.dir}"/> --> |
|
623 |
<pathelement location="${javac.jar}"/> |
<pathelement location="${javac.jar}"/> |
624 |
</path> |
</path> |
625 |
|
|
626 |
<path id="javac.bootclasspath"> |
<path id="compile.bootclasspath"> |
627 |
<!-- <pathelement location="${src.dir}"/> --> |
<pathelement location="${build.classes.dir}"/> |
628 |
<pathelement location="${collect.jar}"/> |
<pathelement location="${collect.jar}"/> |
629 |
<pathelement location="${rt.jar}"/> |
<pathelement location="${rt.jar}"/> |
630 |
</path> |
</path> |
631 |
|
|
632 |
<!-- Flatten bootclasspath prefix into a platform-appropriate string --> |
<!-- Flatten paths into platform-appropriate strings --> |
633 |
<property name="javac.bootclasspath.prefix" |
<property name="pre.bootclasspath" refid="pre.bootclasspath"/> |
634 |
refid="javac.bootclasspath.prefix"/> |
<property name="compile.bootclasspath" refid="compile.bootclasspath"/> |
635 |
|
|
|
<!-- Turn the flattened bootclasspath prefix into a javac argument --> |
|
|
<property name="build.bootclasspath.arg" |
|
|
value='-J-Xbootclasspath/p:${javac.bootclasspath.prefix}'/> |
|
|
|
|
|
<!-- Flatten bootclasspath for trace message --> |
|
|
<property name="javac.bootclasspath" |
|
|
refid="javac.bootclasspath"/> |
|
636 |
|
|
637 |
<!-- Common options in javac invocations --> |
<!-- Common options in javac invocations --> |
638 |
<property name="build.javac.args" |
<property name="gjc.args" |
639 |
value="${build.bootclasspath.arg} ${build.warnunchecked} ${build.novariance}"/> |
value="-J-Xbootclasspath/p:${pre.bootclasspath} ${warnunchecked.arg} ${novariance.arg}" |
640 |
|
/> |
641 |
|
|
642 |
|
</target> |
643 |
|
|
644 |
|
|
645 |
<echo>javac ${build.javac.args} |
<target name="prepare-src" |
646 |
bootclasspath is ${javac.bootclasspath}</echo> |
depends="configure-compiler" |
647 |
|
if="prepare.src.dir"> |
648 |
|
|
649 |
|
<mkdir dir="${prepare.src.dir}"/> |
650 |
|
<copy todir="${prepare.src.dir}"> |
651 |
|
<fileset dir="${src.dir}"> |
652 |
|
<exclude name="java/lang/**"/> |
653 |
|
</fileset> |
654 |
|
</copy> |
655 |
|
|
656 |
</target> |
</target> |
657 |
|
|
673 |
</target> |
</target> |
674 |
|
|
675 |
|
|
676 |
<target name="configure-tests"> |
<target name="configure-tests" |
677 |
|
depends="configure-compiler"> |
678 |
|
|
679 |
<!-- junit.framework.Protectable is in JUnit 3.8.1 but not in 3.7 --> |
<!-- junit.framework.Protectable is in JUnit 3.8.1 but not in 3.7 --> |
680 |
<available property="junit.available" |
<available property="junit.available" |
695 |
<pathelement location="${junit.jar}"/> |
<pathelement location="${junit.jar}"/> |
696 |
</path> |
</path> |
697 |
|
|
698 |
<!-- Flatten test classpath into a platform-appropriate string --> |
<path id="test.compile.bootclasspath"> |
699 |
<property name="test.classpath" refid="test.classpath"/> |
<pathelement location="${javac.jar}"/> |
700 |
|
<pathelement location="${collect.jar}"/> |
701 |
|
<pathelement location="${rt.jar}"/> |
702 |
|
</path> |
703 |
|
|
704 |
|
<path id="test.run.bootclasspath"> |
705 |
|
<pathelement location="${javac.jar}"/> |
706 |
|
<path refid="test.classpath"/> |
707 |
|
</path> |
708 |
|
|
709 |
<!-- Turn the flattened test classpath into a javac argument --> |
<!-- Flatten test classpaths into platform-appropriate strings --> |
710 |
<property name="test.bootclasspath.arg" |
<property name="test.classpath" refid="test.classpath"/> |
711 |
value='-Xbootclasspath/p:${test.classpath}'/> |
<property name="test.compile.bootclasspath" refid="test.compile.bootclasspath"/> |
712 |
|
<property name="test.run.bootclasspath" refid="test.run.bootclasspath"/> |
713 |
|
|
714 |
</target> |
</target> |
715 |
|
|
740 |
</target> |
</target> |
741 |
|
|
742 |
|
|
743 |
|
<target name="ng" depends="test"> |
744 |
|
<java classname="SuperfluousAbstract" fork="true"> |
745 |
|
|
746 |
|
<jvmarg value="-Xbootclasspath/p:${test.run.bootclasspath}"/> |
747 |
|
|
748 |
|
</java> |
749 |
|
</target> |
750 |
|
|
751 |
|
|
752 |
</project> |
</project> |