--- jsr166/build.xml 2013/07/20 20:40:24 1.149 +++ jsr166/build.xml 2017/03/26 22:25:20 1.240 @@ -1,4 +1,6 @@ - + ------------------------------------------------------------------------------ @@ -6,6 +8,9 @@ Usage: ant [target] + See http://gee.cs.oswego.edu/dl/concurrency-interest/index.html for + more details. + User-specific settings are read from user.properties. See user.properties.sample for an explanation of some useful settings. @@ -13,26 +18,34 @@ itself. Because the JDK version matters and because different targets require different JDKs, we assume that users have created a hierarchy containing: - $HOME/jdk/jdk6 $HOME/jdk/jdk7 $HOME/jdk/jdk8 + $HOME/jdk/jdk9 + $HOME/jdk/jdk10 where each of the above is a JDK or a symlink to same, and - $HOME/jdk/src/jdk6 $HOME/jdk/src/jdk7 $HOME/jdk/src/jdk8 + $HOME/jdk/src/jdk9 + $HOME/jdk/src/jdk10 where each of the above is a complete JDK source tree (e.g. mercurial forest) or a symlink to same. -As of 2013-02, the very latest lambda 8 jdk is needed for jdk8. + + Alternatively, define ant variables thus: + ant -Djdk$N.home=... -Djdk$N.src.home=... + for $N in 7 8 9 10 ... + + As of 2016-03, the sources in src/main are for jdk9+ only. ------------------------------------------------------------------------------ - + + @@ -45,27 +58,22 @@ As of 2013-02, the very latest lambda 8 - - - - - - - - - - + + + + + @@ -82,21 +90,30 @@ As of 2013-02, the very latest lambda 8 - - - - - + + + + + + + + + + + - - + + - + @@ -115,17 +132,24 @@ As of 2013-02, the very latest lambda 8 + + - + + + + + + @@ -134,6 +158,7 @@ As of 2013-02, the very latest lambda 8 + @@ -141,6 +166,7 @@ As of 2013-02, the very latest lambda 8 + @@ -149,45 +175,70 @@ As of 2013-02, the very latest lambda 8 + - - - - - - - - + + + + + + + + + + - - + + + + + + + - - - - - - + + - + + + + + + + + + + + + + - + + + + @@ -216,11 +270,24 @@ As of 2013-02, the very latest lambda 8 failonerror="true" jvm="${java@{target}}" fork="true"> - + + + + + + + - - - + + + + + + + + + + @@ -230,30 +297,62 @@ As of 2013-02, the very latest lambda 8 + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + - - - - - - + workDir="@{workdir}/JTwork"> + + + + - + + + @@ -269,32 +368,53 @@ As of 2013-02, the very latest lambda 8 + + + + - + + + + + + + + + + + + + + - + + @@ -304,10 +424,15 @@ As of 2013-02, the very latest lambda 8 - + description="Builds library jar for src/main from compiled sources"> + + - + + + + + @@ -321,27 +446,40 @@ As of 2013-02, the very latest lambda 8 + + + + + + executable="${javadoc9}"> + + + + + - - - + - + + + + + + @@ -365,6 +503,10 @@ As of 2013-02, the very latest lambda 8 + + + + @@ -396,34 +538,87 @@ As of 2013-02, the very latest lambda 8 - - + description="Runs tck tests for src/main directly"> + classes="${product.jar}"> + + + + + + + + + + + + + + + + - + + + + + + + description="Runs jtreg tests for src/main using the jtreg ant task"> + depends="tck, tck-parallelism-1, tck-parallelism-0, jtreg" + description="Runs tck and jtreg tests for src/main"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -444,8 +639,8 @@ As of 2013-02, the very latest lambda 8 - + + @@ -455,6 +650,8 @@ As of 2013-02, the very latest lambda 8 debuglevel="${build.debuglevel}" deprecation="${build.deprecation}" source="${build.sourcelevel}" + target="${build.sourcelevel}" + encoding="ASCII" fork="true"> @@ -470,6 +667,206 @@ As of 2013-02, the very latest lambda 8 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -495,6 +894,7 @@ As of 2013-02, the very latest lambda 8 + @@ -512,10 +912,12 @@ As of 2013-02, the very latest lambda 8 debuglevel="${build.debuglevel}" deprecation="${build.deprecation}" source="6" + target="6" classpath="" - bootclasspath="${bootclasspath7}" + bootclasspath="${bootclasspath6}" includeAntRuntime="false" includeJavaRuntime="false" + encoding="ASCII" executable="${javac8}" fork="true"> @@ -536,12 +938,16 @@ As of 2013-02, the very latest lambda 8 + + + + - @@ -552,6 +958,8 @@ As of 2013-02, the very latest lambda 8 + + @@ -559,14 +967,16 @@ As of 2013-02, the very latest lambda 8 + + - + + - + classes="${4jdk7product.jar}"/> @@ -617,15 +1026,17 @@ As of 2013-02, the very latest lambda 8 + executable="${javadoc7}" + failonerror = "true"> + @@ -672,14 +1083,17 @@ As of 2013-02, the very latest lambda 8 classpath="" bootclasspath="${bootclasspath6}" source="5" + target="5" includeAntRuntime="false" includeJavaRuntime="false" + encoding="ASCII" executable="${javac7}" fork="true"> + @@ -692,6 +1106,10 @@ As of 2013-02, the very latest lambda 8 + + + + @@ -705,12 +1123,14 @@ As of 2013-02, the very latest lambda 8 + executable="${javadoc7}" + failonerror = "true"> + @@ -755,16 +1175,19 @@ As of 2013-02, the very latest lambda 8 debuglevel="${build.debuglevel}" deprecation="${build.deprecation}" source="6" + target="6" classpath="" bootclasspath="${bootclasspath6}" includeAntRuntime="false" includeJavaRuntime="false" + encoding="ASCII" executable="${javac7}" fork="true"> + @@ -777,6 +1200,10 @@ As of 2013-02, the very latest lambda 8 + + + + @@ -790,12 +1217,14 @@ As of 2013-02, the very latest lambda 8 + executable="${javadoc7}" + failonerror = "true"> + @@ -843,14 +1272,17 @@ As of 2013-02, the very latest lambda 8 bootclasspath="@{jsr166y.jar}:${bootclasspath6}" classpath="" source="6" + target="6" includeAntRuntime="false" includeJavaRuntime="false" + encoding="ASCII" executable="${javac7}" fork="true"> + @@ -863,6 +1295,10 @@ As of 2013-02, the very latest lambda 8 + + + + @@ -876,12 +1312,13 @@ As of 2013-02, the very latest lambda 8 + @@ -928,6 +1365,7 @@ As of 2013-02, the very latest lambda 8 debuglevel="${build.debuglevel}" deprecation="${build.deprecation}" source="${build.jsr166e.java.version}" + target="${build.jsr166e.java.version}" classpath="" includeAntRuntime="false" includeJavaRuntime="false" @@ -937,11 +1375,40 @@ As of 2013-02, the very latest lambda 8 + + + + + + + + + + + + + + + + + + + + + @@ -962,18 +1433,20 @@ As of 2013-02, the very latest lambda 8 + executable="${javadoc7}" + failonerror = "true"> + - @@ -985,23 +1458,23 @@ As of 2013-02, the very latest lambda 8 classes="${jsr166e.jar}"/> - - + - + - + @@ -1009,7 +1482,7 @@ As of 2013-02, the very latest lambda 8 @@ -1039,9 +1512,165 @@ As of 2013-02, the very latest lambda 8 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +