38 |
------------------------------------------------------------------------------ |
------------------------------------------------------------------------------ |
39 |
</description> |
</description> |
40 |
|
|
41 |
<!-- Display main targets by running 'ant -projecthelp' --> |
<!-- Run 'ant -projecthelp' (default target) --> |
42 |
<target name="usage"> |
<target name="usage"> |
43 |
<java classname="org.apache.tools.ant.Main"> |
<java classname="org.apache.tools.ant.Main"> |
44 |
<arg value="-projecthelp" /> |
<arg value="-projecthelp" /> |
186 |
<property name="java6.docroot.url" value="http://docs.oracle.com/javase/6/docs"/> |
<property name="java6.docroot.url" value="http://docs.oracle.com/javase/6/docs"/> |
187 |
<property name="java7.docroot.url" value="http://docs.oracle.com/javase/7/docs"/> |
<property name="java7.docroot.url" value="http://docs.oracle.com/javase/7/docs"/> |
188 |
<property name="java8.docroot.url" value="http://docs.oracle.com/javase/8/docs"/> |
<property name="java8.docroot.url" value="http://docs.oracle.com/javase/8/docs"/> |
189 |
<!-- The expected canonical location does not yet exist as of 2016-03 --> |
<!-- The expected canonical location does not yet exist as of 2016-04 --> |
190 |
<!-- <property name="java9.docroot.url" value="http://docs.oracle.com/javase/9/docs"/> --> |
<!-- <property name="java9.docroot.url" value="http://docs.oracle.com/javase/9/docs"/> --> |
191 |
<property name="java9.docroot.url" value="http://download.java.net/jdk9/docs"/> |
<property name="java9.docroot.url" value="http://download.java.net/java/jdk9/docs"/> |
192 |
<!-- Default jdk doc location (latest stable release seems best) --> |
<!-- Default jdk doc location (latest stable release seems best) --> |
193 |
<property name="java.docroot.url" value="${java8.docroot.url}"/> |
<property name="java.docroot.url" value="${java8.docroot.url}"/> |
194 |
|
|
245 |
classpath="${junit.jar}" |
classpath="${junit.jar}" |
246 |
includeAntRuntime="false" |
includeAntRuntime="false" |
247 |
includeJavaRuntime="false" |
includeJavaRuntime="false" |
248 |
|
encoding="ASCII" |
249 |
executable="${javac@{compile-target}}" |
executable="${javac@{compile-target}}" |
250 |
fork="true"> |
fork="true"> |
251 |
|
|
253 |
<compilerarg value="-XDignore.symbol.file=true"/> |
<compilerarg value="-XDignore.symbol.file=true"/> |
254 |
<compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial,-deprecation,-try"/> |
<compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial,-deprecation,-try"/> |
255 |
<compilerarg value="-Xbootclasspath/p:@{classes}" unless:set="modules"/> |
<compilerarg value="-Xbootclasspath/p:@{classes}" unless:set="modules"/> |
256 |
<compilerarg value="-Xpatch:${build.classes.dir}" if:set="modules"/> |
<compilerarg line="--patch-module java.base=${build.classes.dir}/java.base" if:set="modules"/> |
257 |
<compilerarg line="${build.args}"/> |
<compilerarg line="${build.args}"/> |
258 |
<javac-elements/> |
<javac-elements/> |
259 |
|
|
264 |
jvm="${java@{target}}" |
jvm="${java@{target}}" |
265 |
fork="true"> |
fork="true"> |
266 |
<jvmarg value="-Xbootclasspath/p:@{classes}" unless:set="modules"/> |
<jvmarg value="-Xbootclasspath/p:@{classes}" unless:set="modules"/> |
267 |
<jvmarg value="-Xpatch:${build.classes.dir}" if:set="modules"/> |
<jvmarg line="--patch-module java.base=${build.classes.dir}/java.base" if:set="modules"/> |
268 |
<jvmarg line="@{jvmflags}"/> |
<jvmarg line="@{jvmflags}"/> |
269 |
|
<!-- ant -Dvmoptions="-Xmx8m" -Djsr166.tckTestClass=CompletableFutureTest tck --> |
270 |
|
<jvmarg line="${vmoptions}" if:set="vmoptions"/> |
271 |
|
|
272 |
<!-- ant -Djava.util.concurrent.ForkJoinPool.common.parallelism=1 tck --> |
<!-- ant -Djava.util.concurrent.ForkJoinPool.common.parallelism=1 tck --> |
273 |
<syspropertyset id="system-properties-used-by-tck"> |
<syspropertyset id="system-properties-used-by-tck"> |
274 |
<propertyref prefix="java.util.concurrent.ForkJoinPool"/> |
<propertyref prefix="java.util.concurrent.ForkJoinPool"/> |
275 |
<propertyref prefix="jsr166."/> |
<propertyref prefix="jsr166."/> |
330 |
|
|
331 |
<delete dir="@{workdir}/JTwork" quiet="true"/> |
<delete dir="@{workdir}/JTwork" quiet="true"/> |
332 |
<delete dir="@{workdir}/JTreport" quiet="true"/> |
<delete dir="@{workdir}/JTreport" quiet="true"/> |
|
<mkdir dir="@{workdir}/JTwork/scratch"/> |
|
|
<!-- workaround for https://bugs.openjdk.java.net/browse/CODETOOLS-7901571 --> |
|
|
<mkdir dir="@{workdir}/JTreport/html"/> |
|
|
<mkdir dir="@{workdir}/JTreport/text"/> |
|
333 |
<jtreg dir="${jtreg@{target}.src.dir}" |
<jtreg dir="${jtreg@{target}.src.dir}" |
334 |
jdk="${jdk@{target}.home}" |
jdk="${jdk@{target}.home}" |
335 |
workDir="@{workdir}/JTwork" |
workDir="@{workdir}/JTwork" |
336 |
reportDir="@{workdir}/JTreport"> |
reportDir="@{workdir}/JTreport"> |
337 |
<patternset refid="jdk@{target}.jtreg.tests"/> |
<patternset refid="jdk@{target}.jtreg.tests"/> |
338 |
<arg value="-Xbootclasspath/p:@{classes}" unless:set="modules"/> |
<arg value="-Xbootclasspath/p:@{classes}" unless:set="modules"/> |
339 |
<arg value="-Xpatch:${build.classes.dir}" if:set="modules"/> |
<arg value="-vmoptions:--patch-module java.base=${build.classes.dir}/java.base" if:set="modules"/> |
340 |
<arg value="-agentvm"/> |
<arg value="-agentvm"/> |
341 |
<arg value="-verbose:${jtreg.verbose}"/> |
<arg value="-verbose:${jtreg.verbose}"/> |
342 |
<arg value="-vmoptions:-esa -ea"/> |
<arg value="-vmoptions:-esa -ea"/> |
392 |
classpath="" |
classpath="" |
393 |
includeAntRuntime="false" |
includeAntRuntime="false" |
394 |
includeJavaRuntime="false" |
includeJavaRuntime="false" |
395 |
|
encoding="ASCII" |
396 |
executable="${build.main.javac}" |
executable="${build.main.javac}" |
397 |
fork="true"> |
fork="true"> |
398 |
|
|
407 |
<compilerarg line="${build.args}"/> |
<compilerarg line="${build.args}"/> |
408 |
|
|
409 |
</javac> |
</javac> |
|
|
|
|
<!-- We need jdk9's Contended annotation, but at compile time only --> |
|
|
<!-- |
|
|
<delete file="${destdir}/jdk/internal/vm/annotation/Contended.class"/> |
|
|
--> |
|
410 |
</target> |
</target> |
411 |
|
|
412 |
|
|
413 |
<target name="jar" |
<target name="jar" |
414 |
depends="compile" |
depends="compile" |
415 |
description="Builds library jar from compiled sources"> |
description="Builds library jar for src/main from compiled sources"> |
416 |
|
<local name="subdir"/> |
417 |
|
<available property="subdir" file="${build.classes.dir}/java.base" type="dir" value="/java.base"/> |
418 |
<jar destfile="${product.jar}"> |
<jar destfile="${product.jar}"> |
419 |
<fileset dir="${build.classes.dir}"/> |
<fileset dir="${build.classes.dir}${subdir}"/> |
420 |
<manifest> |
<manifest> |
421 |
<attribute name="Built-By" value="${user.name}"/> |
<attribute name="Built-By" value="${user.name}"/> |
422 |
<attribute name="Implementation-Vendor" value="JCP JSR-166 Expert Group."/> |
<attribute name="Implementation-Vendor" value="JCP JSR-166 Expert Group."/> |
434 |
<!-- the packagenames="none" hack below prevents scanning the --> |
<!-- the packagenames="none" hack below prevents scanning the --> |
435 |
<!-- sourcepath for packages --> |
<!-- sourcepath for packages --> |
436 |
|
|
437 |
|
<!-- TODO: sourcepath="${src.dir}:${jdk9.src.dir}" --> |
438 |
|
<!-- TODO: sourcepath="${src.dir}:${jdk9.src.dir}:${jdk9.src.home}/jdk/src/java.logging/share/classes" --> |
439 |
<javadoc destdir="${docs.dir}" |
<javadoc destdir="${docs.dir}" |
440 |
packagenames="none" |
packagenames="none" |
441 |
link="${java9.api.url}" |
link="${java9.api.url}" |
442 |
overview="${src.dir}/intro.html" |
overview="${src.dir}/intro.html" |
443 |
access="${build.javadoc.access}" |
access="${build.javadoc.access}" |
444 |
sourcepath="${src.dir}:${jdk9.src.dir}" |
sourcepath="${src.dir}" |
445 |
classpath="" |
classpath="" |
446 |
executable="${javadoc9}"> |
executable="${javadoc9}"> |
447 |
<fileset dir="${src.dir}" defaultexcludes="yes"> |
<fileset dir="${src.dir}" defaultexcludes="yes"> |
450 |
<arg line="-Xdocrootparent ${java9.docroot.url}"/> |
<arg line="-Xdocrootparent ${java9.docroot.url}"/> |
451 |
<arg line="-Xmaxerrs 1000 -Xmaxwarns 1000"/> |
<arg line="-Xmaxerrs 1000 -Xmaxwarns 1000"/> |
452 |
<arg value="-XDignore.symbol.file=true"/> |
<arg value="-XDignore.symbol.file=true"/> |
453 |
<!-- TODO <arg value="-Xmodule:java.base"/> --> |
<arg value="-Xmodule:java.base"/> |
454 |
<arg value="-tag"/> |
<arg value="-tag"/> |
455 |
<arg value="${javadoc.jls.option}"/> |
<arg value="${javadoc.jls.option}"/> |
456 |
<arg value="-tag"/> |
<arg value="-tag"/> |
524 |
|
|
525 |
<target name="tck" |
<target name="tck" |
526 |
depends="jar" |
depends="jar" |
527 |
description="Runs tck tests for main directly"> |
description="Runs tck tests for src/main directly"> |
528 |
|
|
529 |
<run-tck-tests |
<run-tck-tests |
530 |
target="${build.main.java.version}" |
target="${build.main.java.version}" |
533 |
</target> |
</target> |
534 |
|
|
535 |
<target name="tck-parallelism-1" |
<target name="tck-parallelism-1" |
536 |
description="Runs tck with given common pool parallelism"> |
description="Runs tck with common pool parallelism 1"> |
537 |
<antcall target="tck"> |
<antcall target="tck"> |
538 |
<param name="java.util.concurrent.ForkJoinPool.common.parallelism" value="1"/> |
<param name="java.util.concurrent.ForkJoinPool.common.parallelism" value="1"/> |
539 |
</antcall> |
</antcall> |
540 |
</target> |
</target> |
541 |
|
|
542 |
<target name="tck-parallelism-0" |
<target name="tck-parallelism-0" |
543 |
description="Runs tck with given common pool parallelism"> |
description="Runs tck with common pool parallelism 0"> |
544 |
<antcall target="tck"> |
<antcall target="tck"> |
545 |
<param name="java.util.concurrent.ForkJoinPool.common.parallelism" value="0"/> |
<param name="java.util.concurrent.ForkJoinPool.common.parallelism" value="0"/> |
546 |
</antcall> |
</antcall> |
547 |
</target> |
</target> |
548 |
|
|
549 |
|
<target name="tck-security-manager" |
550 |
|
description="Runs tck with a security manager"> |
551 |
|
<antcall target="tck"> |
552 |
|
<param name="jsr166.useSecurityManager" value="true"/> |
553 |
|
</antcall> |
554 |
|
</target> |
555 |
|
|
556 |
<target name="jtreg" |
<target name="jtreg" |
557 |
depends="jar" |
depends="jar" |
558 |
description="Runs jtreg tests for main using the jtreg ant task"> |
description="Runs jtreg tests for src/main using the jtreg ant task"> |
559 |
<run-jtreg-tests |
<run-jtreg-tests |
560 |
target="${build.main.java.version}" |
target="${build.main.java.version}" |
561 |
workdir="${build.dir}" |
workdir="${build.dir}" |
563 |
</target> |
</target> |
564 |
|
|
565 |
<target name="test" |
<target name="test" |
566 |
depends="tck, tck-parallelism-1, jtreg" |
depends="tck, tck-parallelism-1, tck-parallelism-0, jtreg" |
567 |
description="Runs tck and jtreg tests for main"> |
description="Runs tck and jtreg tests for src/main"> |
568 |
</target> |
</target> |
569 |
|
|
570 |
<target name="jtreg8" description="Runs jtreg tests with jdk8"> |
<!-- <target name="jtreg8" description="Runs jtreg tests with jdk8"> --> |
571 |
|
|
572 |
<antcall target="jtreg"> |
<!-- <antcall target="jtreg"> --> |
573 |
<param name="build.main.java.version" value="8"/> |
<!-- <param name="build.main.java.version" value="8"/> --> |
574 |
<param name="build.main.javac" value="${javac8}"/> |
<!-- <param name="build.main.javac" value="${javac8}"/> --> |
575 |
</antcall> |
<!-- </antcall> --> |
576 |
|
|
577 |
</target> |
<!-- </target> --> |
578 |
|
|
579 |
<target name="test89" |
<!-- <target name="test89" --> |
580 |
description="Runs tck and jtreg tests for main for multiple java versions"> |
<!-- description="Runs tck and jtreg tests for src/main for multiple java versions"> --> |
581 |
|
|
582 |
<antcall target="clean"/> |
<!-- <antcall target="clean"/> --> |
583 |
<antcall target="test"> |
<!-- <antcall target="test"> --> |
584 |
<param name="build.main.java.version" value="8"/> |
<!-- <param name="build.main.java.version" value="8"/> --> |
585 |
<param name="build.main.javac" value="${javac8}"/> |
<!-- <param name="build.main.javac" value="${javac8}"/> --> |
586 |
</antcall> |
<!-- </antcall> --> |
587 |
|
|
588 |
<antcall target="clean"/> |
<!-- <antcall target="clean"/> --> |
589 |
<antcall target="test"> |
<!-- <antcall target="test"> --> |
590 |
<param name="build.main.java.version" value="9"/> |
<!-- <param name="build.main.java.version" value="9"/> --> |
591 |
<param name="build.main.javac" value="${javac9}"/> |
<!-- <param name="build.main.javac" value="${javac9}"/> --> |
592 |
</antcall> |
<!-- </antcall> --> |
593 |
|
|
594 |
</target> |
<!-- </target> --> |
595 |
|
|
596 |
|
|
597 |
|
|
633 |
deprecation="${build.deprecation}" |
deprecation="${build.deprecation}" |
634 |
source="${build.sourcelevel}" |
source="${build.sourcelevel}" |
635 |
target="${build.sourcelevel}" |
target="${build.sourcelevel}" |
636 |
|
encoding="ASCII" |
637 |
fork="true"> |
fork="true"> |
638 |
|
|
639 |
<compilerarg line="${build.args}"/> |
<compilerarg line="${build.args}"/> |
661 |
deprecation="${build.deprecation}" |
deprecation="${build.deprecation}" |
662 |
includeAntRuntime="false" |
includeAntRuntime="false" |
663 |
includeJavaRuntime="false" |
includeJavaRuntime="false" |
664 |
|
encoding="ASCII" |
665 |
executable="${javac9}" |
executable="${javac9}" |
666 |
fork="true"> |
fork="true"> |
667 |
|
|
695 |
bootclasspath="${bootclasspath8}" |
bootclasspath="${bootclasspath8}" |
696 |
includeAntRuntime="false" |
includeAntRuntime="false" |
697 |
includeJavaRuntime="false" |
includeJavaRuntime="false" |
698 |
|
encoding="ASCII" |
699 |
executable="${javac8}" |
executable="${javac8}" |
700 |
fork="true"> |
fork="true"> |
701 |
|
|
726 |
bootclasspath="${bootclasspath8}" |
bootclasspath="${bootclasspath8}" |
727 |
includeAntRuntime="false" |
includeAntRuntime="false" |
728 |
includeJavaRuntime="false" |
includeJavaRuntime="false" |
729 |
|
encoding="ASCII" |
730 |
executable="${javac8}" |
executable="${javac8}" |
731 |
fork="true"> |
fork="true"> |
732 |
|
|
802 |
access="${build.javadoc.access}" |
access="${build.javadoc.access}" |
803 |
sourcepath="${4jdk8src.dir}:${jdk8.src.dir}" |
sourcepath="${4jdk8src.dir}:${jdk8.src.dir}" |
804 |
classpath="" |
classpath="" |
805 |
executable="${javadoc8}"> |
executable="${javadoc8}" |
806 |
|
failonerror = "true"> |
807 |
<fileset dir="${4jdk8src.dir}" defaultexcludes="yes"> |
<fileset dir="${4jdk8src.dir}" defaultexcludes="yes"> |
808 |
<include name="**/*.java"/> |
<include name="**/*.java"/> |
809 |
</fileset> |
</fileset> |
866 |
bootclasspath="${bootclasspath6}" |
bootclasspath="${bootclasspath6}" |
867 |
includeAntRuntime="false" |
includeAntRuntime="false" |
868 |
includeJavaRuntime="false" |
includeJavaRuntime="false" |
869 |
|
encoding="ASCII" |
870 |
executable="${javac7}" |
executable="${javac7}" |
871 |
fork="true"> |
fork="true"> |
872 |
|
|
897 |
bootclasspath="${bootclasspath6}" |
bootclasspath="${bootclasspath6}" |
898 |
includeAntRuntime="false" |
includeAntRuntime="false" |
899 |
includeJavaRuntime="false" |
includeJavaRuntime="false" |
900 |
|
encoding="ASCII" |
901 |
executable="${javac8}" |
executable="${javac8}" |
902 |
fork="true"> |
fork="true"> |
903 |
|
|
1010 |
access="${build.javadoc.access}" |
access="${build.javadoc.access}" |
1011 |
sourcepath="${4jdk7src.dir}:${jdk7.src.dir}" |
sourcepath="${4jdk7src.dir}:${jdk7.src.dir}" |
1012 |
classpath="" |
classpath="" |
1013 |
executable="${javadoc7}"> |
executable="${javadoc7}" |
1014 |
|
failonerror = "true"> |
1015 |
<fileset dir="${4jdk7src.dir}" defaultexcludes="yes"> |
<fileset dir="${4jdk7src.dir}" defaultexcludes="yes"> |
1016 |
<include name="**/*.java"/> |
<include name="**/*.java"/> |
1017 |
</fileset> |
</fileset> |
1065 |
target="5" |
target="5" |
1066 |
includeAntRuntime="false" |
includeAntRuntime="false" |
1067 |
includeJavaRuntime="false" |
includeJavaRuntime="false" |
1068 |
|
encoding="ASCII" |
1069 |
executable="${javac7}" |
executable="${javac7}" |
1070 |
fork="true"> |
fork="true"> |
1071 |
|
|
1107 |
sourcepath="${topsrc.dir}:${jdk6.src.dir}" |
sourcepath="${topsrc.dir}:${jdk6.src.dir}" |
1108 |
bootclasspath="${bootclasspath6}" |
bootclasspath="${bootclasspath6}" |
1109 |
source="5" |
source="5" |
1110 |
executable="${javadoc7}"> |
executable="${javadoc7}" |
1111 |
|
failonerror = "true"> |
1112 |
<arg line="-Xdocrootparent ${java.docroot.url}"/> |
<arg line="-Xdocrootparent ${java.docroot.url}"/> |
1113 |
<arg value="-XDignore.symbol.file=true"/> |
<arg value="-XDignore.symbol.file=true"/> |
1114 |
|
|
1159 |
bootclasspath="${bootclasspath6}" |
bootclasspath="${bootclasspath6}" |
1160 |
includeAntRuntime="false" |
includeAntRuntime="false" |
1161 |
includeJavaRuntime="false" |
includeJavaRuntime="false" |
1162 |
|
encoding="ASCII" |
1163 |
executable="${javac7}" |
executable="${javac7}" |
1164 |
fork="true"> |
fork="true"> |
1165 |
|
|
1201 |
sourcepath="${topsrc.dir}:${jdk6.src.dir}" |
sourcepath="${topsrc.dir}:${jdk6.src.dir}" |
1202 |
bootclasspath="${bootclasspath6}" |
bootclasspath="${bootclasspath6}" |
1203 |
source="6" |
source="6" |
1204 |
executable="${javadoc7}"> |
executable="${javadoc7}" |
1205 |
|
failonerror = "true"> |
1206 |
<arg line="-Xdocrootparent ${java.docroot.url}"/> |
<arg line="-Xdocrootparent ${java.docroot.url}"/> |
1207 |
<arg value="-XDignore.symbol.file=true"/> |
<arg value="-XDignore.symbol.file=true"/> |
1208 |
|
|
1254 |
target="6" |
target="6" |
1255 |
includeAntRuntime="false" |
includeAntRuntime="false" |
1256 |
includeJavaRuntime="false" |
includeJavaRuntime="false" |
1257 |
|
encoding="ASCII" |
1258 |
executable="${javac7}" |
executable="${javac7}" |
1259 |
fork="true"> |
fork="true"> |
1260 |
|
|
1416 |
access="${build.javadoc.access}" |
access="${build.javadoc.access}" |
1417 |
sourcepath="${topsrc.dir}:${jdk6.src.dir}" |
sourcepath="${topsrc.dir}:${jdk6.src.dir}" |
1418 |
source="${build.jsr166e.java.version}" |
source="${build.jsr166e.java.version}" |
1419 |
executable="${javadoc7}"> |
executable="${javadoc7}" |
1420 |
|
failonerror = "true"> |
1421 |
<arg line="-Xdocrootparent ${java.docroot.url}"/> |
<arg line="-Xdocrootparent ${java.docroot.url}"/> |
1422 |
<arg value="-XDignore.symbol.file=true"/> |
<arg value="-XDignore.symbol.file=true"/> |
1423 |
|
|