ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/build.xml
(Generate patch)

Comparing jsr166/build.xml (file contents):
Revision 1.148 by jsr166, Sat Jul 20 18:26:16 2013 UTC vs.
Revision 1.206 by jsr166, Sun Mar 27 19:38:01 2016 UTC

# Line 1 | Line 1
1 < <project name="jsr166" default="usage">
1 > <project name="jsr166" default="usage"
2 >  xmlns:if="ant:if" xmlns:unless="ant:unless">
3  
4    <description>
5   ------------------------------------------------------------------------------
# Line 6 | Line 7
7  
8    Usage: ant [target]
9  
10 +  See http://gee.cs.oswego.edu/dl/concurrency-interest/index.html for
11 +  more details.
12 +
13    User-specific settings are read from user.properties.
14    See user.properties.sample for an explanation of some useful settings.
15  
# Line 16 | Line 20
20    $HOME/jdk/jdk6
21    $HOME/jdk/jdk7
22    $HOME/jdk/jdk8
23 +  $HOME/jdk/jdk9
24    where each of the above is a JDK or a symlink to same, and
25    $HOME/jdk/src/jdk6
26    $HOME/jdk/src/jdk7
27    $HOME/jdk/src/jdk8
28 +  $HOME/jdk/src/jdk9
29    where each of the above is a complete JDK source tree
30    (e.g. mercurial forest) or a symlink to same.
31 < As of 2013-02, the very latest lambda 8 jdk is needed for jdk8.
31 >
32 >  Alternatively, define ant variables thus:
33 >  ant -Djdk$N.home=... -Djdk$N.src.home=...
34 >  for $N in 6 7 8 9 ...
35 >
36 >  As of 2016-03, the sources in src/main are for jdk9+ only.  The "docs"
37 >  target is currently broken.
38   ------------------------------------------------------------------------------
39    </description>
40  
# Line 33 | Line 45 | As of 2013-02, the very latest lambda 8
45      </java>
46    </target>
47  
48 +  <!-- HOWTO printf debug: <echo message="prop=${prop}"/> -->
49  
50    <!-- User-specific settings -->
51    <property file="user.properties"/>
# Line 45 | Line 58 | As of 2013-02, the very latest lambda 8
58    <property name="build.deprecation"    value="false"/>
59    <property name="build.javadoc.access" value="protected"/>
60  
48  <!-- Tck options; see JSR166TestCase.java -->
49  <!-- ant -Djsr166.profileTests=true -Djsr166.runsPerTest=100 test-tck -->
50  <property name="jsr166.profileTests"     value="false"/>
51  <property name="jsr166.profileThreshold" value="100"/>
52  <property name="jsr166.runsPerTest"      value="1"/>
53  <!-- Allow running an individual tck test class -->
54  <!-- ant -Djsr166.tckTestClass=CountedCompleterTest -Djsr166.runsPerTest=100 test-tck -->
55  <property name="jsr166.tckTestClass"     value="JSR166TestCase"/>
56
61    <!-- Build locations -->
62    <property name="build.dir"                   location="build"/>
63    <property name="build.classes.dir"           location="${build.dir}/classes"/>
# Line 66 | Line 70 | As of 2013-02, the very latest lambda 8
70    <property name="build.4jdk7.tck.classes.dir" location="${build.4jdk7.dir}/tck-classes"/>
71    <property name="build.4jdk7.docs.dir"        location="${build.4jdk7.dir}/docs"/>
72  
73 +  <property name="build.4jdk8.dir"             location="${build.dir}/jsr166-4jdk8"/>
74 +  <property name="build.4jdk8.classes.dir"     location="${build.4jdk8.dir}/classes"/>
75 +  <property name="build.4jdk8.tck.classes.dir" location="${build.4jdk8.dir}/tck-classes"/>
76 +  <property name="build.4jdk8.docs.dir"        location="${build.4jdk8.dir}/docs"/>
77 +
78    <property name="build.jsr166x.dir"           location="${build.dir}/jsr166x"/>
79    <property name="build.jsr166y.dir"           location="${build.dir}/jsr166y"/>
80    <property name="build.jsr166e.dir"           location="${build.dir}/jsr166e"/>
# Line 82 | Line 91 | As of 2013-02, the very latest lambda 8
91    <macrodef name="defjdklocations">
92      <attribute name="v"/>
93      <sequential>
94 <    <property name="jdk@{v}.home"   location="${jdks.home}/jdk@{v}"/>
95 <    <property name="java@{v}"       location="${jdk@{v}.home}/bin/java"/>
96 <    <property name="javac@{v}"      location="${jdk@{v}.home}/bin/javac"/>
97 <    <property name="javadoc@{v}"    location="${jdk@{v}.home}/bin/javadoc"/>
98 <    <property name="jdk@{v}src.dir" location="${jdks.home}/src/jdk@{v}/jdk/src/share/classes"/>
94 >    <property name="jdk@{v}.home"     location="${jdks.home}/jdk@{v}"/>
95 >    <property name="java@{v}"         location="${jdk@{v}.home}/bin/java"/>
96 >    <property name="javac@{v}"        location="${jdk@{v}.home}/bin/javac"/>
97 >    <property name="javadoc@{v}"      location="${jdk@{v}.home}/bin/javadoc"/>
98 >    <property name="jdk@{v}.src.home" location="${jdks.home}/src/jdk@{v}"/>
99 >    <local name="have.java.base"/>
100 >    <available property="have.java.base"
101 >      file="${jdk@{v}.src.home}/jdk/src/java.base/share/classes" type="dir"/>
102 >    <property name="jdk@{v}.src.dir" location="${jdk@{v}.src.home}/jdk/src/java.base/share/classes"
103 >      if:set="have.java.base"/>
104 >    <property name="jdk@{v}.src.dir" location="${jdk@{v}.src.home}/jdk/src/share/classes"
105 >      unless:set="have.java.base"/>
106 >    <local name="modules"/>
107 >    <available property="modules" file="${jdk@{v}.home}/jmods" type="dir"/>
108      <local name="boot.jar.dir"/>
109 <    <property name="boot.jar.dir"   location="${jdk@{v}.home}/jre/lib"/>
110 <    <path id="bootclasspath@{v}">
109 >    <property name="boot.jar.dir"   location="${jdk@{v}.home}/jre/lib" unless:set="modules"/>
110 >    <path id="bootclasspath@{v}" unless:set="modules">
111        <pathelement path="${boot.jar.dir}/resources.jar"/>
112        <pathelement path="${boot.jar.dir}/rt.jar"/>
113        <pathelement path="${boot.jar.dir}/jsse.jar"/>
114        <pathelement path="${boot.jar.dir}/jce.jar"/>
115        <pathelement path="${boot.jar.dir}/charsets.jar"/>
116      </path>
117 <    <property name="bootclasspath@{v}" value="${toString:bootclasspath@{v}}"/>
117 >    <property name="bootclasspath@{v}" value="${toString:bootclasspath@{v}}" unless:set="modules"/>
118      </sequential>
119    </macrodef>
120  
# Line 115 | Line 133 | As of 2013-02, the very latest lambda 8
133    <defjdklocations v="6"/>
134    <defjdklocations v="7"/>
135    <defjdklocations v="8"/>
136 +  <defjdklocations v="9"/>
137  
138    <!-- Source locations -->
139    <property name="src.dir"              location="${basedir}/src/main"/>
140    <property name="test.src.dir"         location="${basedir}/src/test"/>
141    <property name="loops.src.dir"        location="${basedir}/src/loops"/>
142    <property name="tck.src.dir"          location="${test.src.dir}/tck"/>
143 <  <property name="jtreg.src.dir"        location="${test.src.dir}/jtreg"/>
143 >  <property name="jtreg7.src.dir"       location="${test.src.dir}/jtreg-jdk7"/>
144 >  <property name="jtreg8.src.dir"       location="${test.src.dir}/jtreg-jdk8"/>
145 >  <property name="jtreg9.src.dir"       location="${test.src.dir}/jtreg"/>
146 >  <property name="jtreg.src.dir"        location="${jtreg9.src.dir}"/>
147    <property name="lib.dir"              location="${basedir}/lib"/>
148    <property name="dist.dir"             location="${basedir}/dist"/>
149    <property name="topsrc.dir"           location="${basedir}/src"/>
150    <property name="4jdk7src.dir"         location="${topsrc.dir}/jdk7"/>
151 +  <property name="4jdk8src.dir"         location="${topsrc.dir}/jdk8"/>
152    <property name="jsr166xsrc.dir"       location="${topsrc.dir}/jsr166x"/>
153    <property name="jsr166ysrc.dir"       location="${topsrc.dir}/jsr166y"/>
154    <property name="jsr166esrc.dir"       location="${topsrc.dir}/jsr166e"/>
# Line 134 | Line 157 | As of 2013-02, the very latest lambda 8
157    <!-- Javadoc locations -->
158    <property name="docs.dir"          location="${build.dir}/docs"/>
159    <property name="4jdk7docs.dir"     location="${build.4jdk7.dir}/docs"/>
160 +  <property name="4jdk8docs.dir"     location="${build.4jdk8.dir}/docs"/>
161    <property name="jsr166xdocs.dir"   location="${build.jsr166x.dir}/docs"/>
162    <property name="jsr166ydocs.dir"   location="${build.jsr166y.dir}/docs"/>
163    <property name="jsr166edocs.dir"   location="${build.jsr166e.dir}/docs"/>
# Line 141 | Line 165 | As of 2013-02, the very latest lambda 8
165  
166    <property name="dist.docs.dir"          location="${dist.dir}/docs"/>
167    <property name="dist.4jdk7docs.dir"     location="${dist.dir}/jsr166-4jdk7docs"/>
168 +  <property name="dist.4jdk8docs.dir"     location="${dist.dir}/jsr166-4jdk8docs"/>
169    <property name="dist.jsr166xdocs.dir"   location="${dist.dir}/jsr166xdocs"/>
170    <property name="dist.jsr166ydocs.dir"   location="${dist.dir}/jsr166ydocs"/>
171    <property name="dist.jsr166edocs.dir"   location="${dist.dir}/jsr166edocs"/>
# Line 149 | Line 174 | As of 2013-02, the very latest lambda 8
174    <!-- Jar locations -->
175    <property name="product.jar"      location="${build.dir}/jsr166.jar"/>
176    <property name="4jdk7product.jar" location="${build.4jdk7.dir}/jsr166-4jdk7.jar"/>
177 +  <property name="4jdk8product.jar" location="${build.4jdk8.dir}/jsr166-4jdk8.jar"/>
178    <property name="jsr166x.jar"      location="${build.jsr166x.dir}/jsr166x.jar"/>
179    <property name="jsr166y.jar"      location="${build.jsr166y.dir}/jsr166y.jar"/>
180    <property name="jsr166e.jar"      location="${build.jsr166e.dir}/jsr166e.jar"/>
181    <property name="extra166y.jar"    location="${build.extra166y.dir}/extra166y.jar"/>
182    <property name="junit.jar"        location="${lib.dir}/junit.jar"/>
183  
184 <  <!-- Canonical location of jdk API docs, to use with javadoc link attribute -->
185 <  <property name="jdkapi5docs.url"      value="http://docs.oracle.com/javase/1.5.0/docs/api/"/>
186 <  <property name="jdkapi6docs.url"      value="http://docs.oracle.com/javase/6/docs/api/"/>
187 <  <property name="jdkapi7docs.url"      value="http://docs.oracle.com/javase/7/docs/api/"/>
188 <
189 <  <property name="jdkapi8docs.url"      value="http://download.java.net/jdk8/docs/api/"/>
190 <  <!-- The below does not yet exist as of 2013-01 -->
191 <  <!-- <property name="jdkapi8docs.url" value="http://docs.oracle.com/javase/8/docs/api/"/> -->
184 >  <!-- Canonical location of jdk docs root, to use with javadoc -Xdocrootparent flag -->
185 >  <property name="java5.docroot.url"      value="http://docs.oracle.com/javase/1.5.0/docs"/>
186 >  <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"/>
188 >  <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 -->
190 >  <!-- <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"/>
192 >  <!-- Default jdk doc location (latest stable release seems best) -->
193 >  <property name="java.docroot.url"       value="${java8.docroot.url}"/>
194  
195 <  <!-- Default jdk api doc location (latest stable release seems best) -->
196 <  <property name="jdkapidocs.url"       value="${jdkapi7docs.url}"/>
195 >  <!-- Canonical location of jdk API docs, to use with javadoc link attribute -->
196 >  <property name="java5.api.url"      value="${java5.docroot.url}/api/"/>
197 >  <property name="java6.api.url"      value="${java6.docroot.url}/api/"/>
198 >  <property name="java7.api.url"      value="${java7.docroot.url}/api/"/>
199 >  <property name="java8.api.url"      value="${java8.docroot.url}/api/"/>
200 >  <property name="java9.api.url"      value="${java9.docroot.url}/api/"/>
201 >  <property name="java.api.url"       value="${java.docroot.url}/api/"/>
202  
203    <!-- Define the "jtreg" task -->
204    <!-- See the docs in "jtreg -onlineHelp" -->
205    <taskdef name="jtreg" classname="com.sun.javatest.regtest.Main$$Ant"
206             classpath="${lib.dir}/jtreg.jar" />
207  
208 <  <!-- Test classpath -->
209 <  <path id="test.classpath">
210 <    <pathelement location="${build.testcases.dir}"/>
211 <    <pathelement location="${junit.jar}"/>
212 <  </path>
213 <
208 >  <!-- Tck options; see JSR166TestCase.java
209 >   To profile a single tck test class:
210 >   ant -Djsr166.profileTests=true -Djsr166.profileThreshold=10 -Djsr166.tckTestClass=CompletableFutureTest tck
211 >   To stress test a single tck test class:
212 >   ant -Djsr166.tckTestClass=CountedCompleterTest -Djsr166.runsPerTest=100 tck
213 >   To stress test a single tck test method:
214 >   ant -Djsr166.tckTestClass=RecursiveTaskTest -Djsr166.runsPerTest=1000 -Djsr166.methodFilter=testAbnormalInvokeAll3 tck
215 >  -->
216 >  <property name="jsr166.tckTestClass"     value="JSR166TestCase"/>
217    <macrodef name="run-tck-tests">
218      <attribute name="tck.src.dir" default="${tck.src.dir}"/>
219      <attribute name="target"/>
220      <attribute name="compile-target" default="@{target}"/>
221      <attribute name="workdir"/>
222      <attribute name="classes"/>
223 <    <attribute name="jvmflags" default=""/>
223 >    <!--
224 >        <attribute name="jvmflags" default="-XX:+UseParallelGC -XX:-UseBiasedLocking -ea -esa -Djsr166.testImplementationDetails=true"/>
225 >    -->
226 >        <attribute name="jvmflags" default="-ea -esa -Djsr166.testImplementationDetails=true"/>
227      <element name="javac-elements" optional="true"/>
228 +
229      <sequential>
230  
231 +    <local name="modules"/>
232 +    <condition property="modules">
233 +      <available file="${jdk@{compile-target}.home}/jmods" type="dir"/>
234 +    </condition>
235 +
236      <mkdir dir="@{workdir}/tck-classes"/>
237  
238      <javac srcdir="@{tck.src.dir}"
# Line 198 | Line 243 | As of 2013-02, the very latest lambda 8
243             source="@{compile-target}"
244             target="@{compile-target}"
245             classpath="${junit.jar}"
201           bootclasspath="@{classes}:${bootclasspath@{compile-target}}"
246             includeAntRuntime="false"
247             includeJavaRuntime="false"
248             executable="${javac@{compile-target}}"
# Line 206 | Line 250 | As of 2013-02, the very latest lambda 8
250  
251        <include name="*.java"/>
252        <compilerarg value="-XDignore.symbol.file=true"/>
253 <      <compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial,-deprecation"/>
253 >      <compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial,-deprecation,-try"/>
254 >      <compilerarg value="-Xbootclasspath/p:@{classes}" unless:set="modules"/>
255 >      <compilerarg value="-Xpatch:${build.classes.dir}" if:set="modules"/>
256        <compilerarg line="${build.args}"/>
257        <javac-elements/>
258  
# Line 216 | Line 262 | As of 2013-02, the very latest lambda 8
262            failonerror="true"
263            jvm="${java@{target}}"
264            fork="true">
265 <        <jvmarg value="-Xbootclasspath/p:@{classes}"/>
265 >        <jvmarg value="-Xbootclasspath/p:@{classes}" unless:set="modules"/>
266 >        <jvmarg value="-Xpatch:${build.classes.dir}" if:set="modules"/>
267          <jvmarg line="@{jvmflags}"/>
268 <        <sysproperty key="jsr166.profileTests"     value="${jsr166.profileTests}"/>
269 <        <sysproperty key="jsr166.profileThreshold" value="${jsr166.profileThreshold}"/>
270 <        <sysproperty key="jsr166.runsPerTest"      value="${jsr166.runsPerTest}"/>
268 >
269 >        <!-- ant -Djava.util.concurrent.ForkJoinPool.common.parallelism=1 tck -->
270 >        <syspropertyset id="system-properties-used-by-tck">
271 >          <propertyref prefix="java.util.concurrent.ForkJoinPool"/>
272 >          <propertyref prefix="jsr166."/>
273 >          <propertyref name="test.timeout.factor"/>
274 >        </syspropertyset>
275 >
276          <classpath>
277            <pathelement location="${junit.jar}"/>
278            <pathelement location="@{workdir}/tck-classes"/>
# Line 230 | Line 282 | As of 2013-02, the very latest lambda 8
282      </sequential>
283    </macrodef>
284  
285 +  <!-- Define jtreg test sets for different jdk versions -->
286 +  <fileset dir="${jtreg9.src.dir}">
287 +    <patternset id="jdk9.jtreg.tests">
288 +      <include name="**/*.java"/>
289 +    </patternset>
290 +  </fileset>
291 +
292 +  <fileset dir="${jtreg8.src.dir}">
293 +    <patternset id="jdk8.jtreg.tests">
294 +      <include name="**/*.java"/>
295 +      <exclude name="**/SpliteratorCharacteristics.java"/>
296 +      <!-- https://bugs.openjdk.java.net/browse/JDK-6842353 -->
297 +      <exclude name="**/GCDuringIteration.java"/>
298 +    </patternset>
299 +  </fileset>
300 +
301 +  <fileset dir="${jtreg7.src.dir}">
302 +    <patternset id="jdk7.jtreg.tests">
303 +      <include name="**/*.java"/>
304 +    </patternset>
305 +  </fileset>
306 +
307 +  <!-- ant -Djtreg.flags=-timeoutFactor:4 -->
308 +  <property name="jtreg.flags" value=""/>
309 +
310    <macrodef name="run-jtreg-tests">
311 <    <attribute name="jtreg.src.dir" default="${jtreg.src.dir}"/>
311 >    <!-- ant -Djtreg9.src.dir=src/test/jtreg/util/concurrent/CompletableFuture jtreg -->
312      <attribute name="source" default="7"/>
313      <attribute name="target"/>
314      <attribute name="workdir"/>
315      <attribute name="classes"/>
316      <attribute name="jtregflags" default=""/>
317 +
318      <sequential>
319 +
320 +    <!-- ant -Djtreg.verbose=time,fail,error jtreg -->
321 +    <property name="jtreg.verbose" value="nopass,fail,error"/>
322 +
323 +    <local name="modules"/>
324 +    <condition property="modules">
325 +      <available file="${jdk@{target}.home}/jmods" type="dir"/>
326 +    </condition>
327 +
328      <delete dir="@{workdir}/JTwork"   quiet="true"/>
329      <delete dir="@{workdir}/JTreport" quiet="true"/>
330      <mkdir dir="@{workdir}/JTwork/scratch"/>
331 <    <mkdir dir="@{workdir}/JTreport"/>
332 <    <jtreg dir="@{jtreg.src.dir}"
331 >    <!-- workaround for https://bugs.openjdk.java.net/browse/CODETOOLS-7901571 -->
332 >    <mkdir dir="@{workdir}/JTreport/html"/>
333 >    <mkdir dir="@{workdir}/JTreport/text"/>
334 >    <jtreg dir="${jtreg@{target}.src.dir}"
335             jdk="${jdk@{target}.home}"
336             workDir="@{workdir}/JTwork"
337             reportDir="@{workdir}/JTreport">
338 <
339 <      <arg value="-Xbootclasspath/p:@{classes}"/>
338 >      <patternset refid="jdk@{target}.jtreg.tests"/>
339 >      <arg value="-Xbootclasspath/p:@{classes}" unless:set="modules"/>
340 >      <arg value="-Xpatch:${build.classes.dir}" if:set="modules"/>
341        <arg value="-agentvm"/>
342 <      <arg value="-v:nopass,fail"/>
342 >      <arg value="-verbose:${jtreg.verbose}"/>
343        <arg value="-vmoptions:-esa -ea"/>
344        <arg value="-automatic"/>
345        <arg value="-k:!ignore"/>
346        <arg line="@{jtregflags}"/>
347 +      <arg line="${jtreg.flags}"/>
348      </jtreg>
349      </sequential>
350    </macrodef>
# Line 269 | Line 360 | As of 2013-02, the very latest lambda 8
360  
361    <!-- Main targets -->
362  
363 +  <property name="build.main.java.version" value="9"/>
364 +  <property name="build.main.javac" value="${javac9}"/>
365 +
366    <target name="dists"
367 <          depends="dist, 4jdk7dist, jsr166edist, jsr166ydist, extra166ydist, jsr166xdist"
367 >          depends="dist, 4jdk8dist, 4jdk7dist, jsr166edist, jsr166ydist, extra166ydist, jsr166xdist"
368            description="Builds all public jars and docs"/>
369  
370    <target name="compile"
371            depends="configure-compiler"
372            description="Compiles src/main sources to build dir">
373  
374 <    <mkdir dir="${build.classes.dir}"/>
374 >    <local name="modules"/>
375 >    <condition property="modules">
376 >      <and>
377 >        <available file="${jdk9.home}/jmods" type="dir"/>
378 >        <equals arg1="9" arg2="${build.main.java.version}"/>
379 >      </and>
380 >    </condition>
381 >
382 >    <local name="destdir"/>
383 >    <property name="destdir" value="${build.classes.dir}/java.base" if:set="modules"/>
384 >    <property name="destdir" value="${build.classes.dir}" unless:set="modules"/>
385 >
386 >    <mkdir dir="${destdir}"/>
387  
388      <javac srcdir="${src.dir}"
389 <           destdir="${build.classes.dir}"
389 >           destdir="${destdir}"
390             debug="${build.debug}"
391             debuglevel="${build.debuglevel}"
392             deprecation="${build.deprecation}"
393             classpath=""
394             includeAntRuntime="false"
395             includeJavaRuntime="false"
396 <           executable="${javac8}"
396 >           executable="${build.main.javac}"
397             fork="true">
398  
399        <include name="**/*.java"/>
400 +      <compilerarg value="-Xmodule:java.base" if:set="modules"/>
401        <compilerarg value="-Xprefer:source"/>
402        <compilerarg value="-XDignore.symbol.file=true"/>
403        <compilerarg value="-Xlint:all"/>
404 +      <compilerarg value="-Werror"/>
405        <compilerarg value="-Xdoclint:all/protected"/>
406        <compilerarg line="-Xmaxerrs 1000 -Xmaxwarns 1000"/>
407        <compilerarg line="${build.args}"/>
# Line 304 | Line 412 | As of 2013-02, the very latest lambda 8
412  
413    <target name="jar"
414            depends="compile"
415 <          description="Builds library jar from compiled sources">
415 >          description="Builds library jar for src/main from compiled sources">
416  
417      <jar destfile="${product.jar}">
418        <fileset dir="${build.classes.dir}"/>
419 +      <manifest>
420 +        <attribute name="Built-By" value="${user.name}"/>
421 +        <attribute name="Implementation-Vendor" value="JCP JSR-166 Expert Group."/>
422 +      </manifest>
423      </jar>
424    </target>
425  
# Line 323 | Line 435 | As of 2013-02, the very latest lambda 8
435  
436      <javadoc destdir="${docs.dir}"
437               packagenames="none"
438 <             link="${jdkapi8docs.url}"
438 >             link="${java9.api.url}"
439               overview="${src.dir}/intro.html"
440               access="${build.javadoc.access}"
441 <             sourcepath="${src.dir}:${jdk8src.dir}"
441 >             sourcepath="${src.dir}:${jdk9.src.dir}"
442               classpath=""
443 <             executable="${javadoc8}">
443 >             executable="${javadoc9}">
444        <fileset dir="${src.dir}" defaultexcludes="yes">
445          <include name="**/*.java"/>
446        </fileset>
447 +      <arg line="-Xdocrootparent ${java9.docroot.url}"/>
448        <arg line="-Xmaxerrs 1000 -Xmaxwarns 1000"/>
449        <arg value="-XDignore.symbol.file=true"/>
450 + <!--  TODO     <arg value="-Xmodule:java.base"/> -->
451        <arg value="-tag"/>
452        <arg value="${javadoc.jls.option}"/>
453        <arg value="-tag"/>
# Line 342 | Line 456 | As of 2013-02, the very latest lambda 8
456        <arg value="implSpec:a:&lt;em&gt;Implementation Requirements:&lt;/em&gt;"/>
457        <arg value="-tag"/>
458        <arg value="implNote:a:&lt;em&gt;Implementation Note:&lt;/em&gt;"/>
459 + <!-- tags added in jdk9 -->
460 +      <arg value="-tag"/>
461 +      <arg value="revised:X"/>
462 +      <arg value="-tag"/>
463 +      <arg value="spec:X"/>
464      </javadoc>
465    </target>
466  
# Line 365 | Line 484 | As of 2013-02, the very latest lambda 8
484        <exclude name="src/emulation/**"/>
485        <exclude name="**/SyntaxTest.java"/>
486        <exclude name="**/SuperfluousAbstract.java"/>
487 +      <manifest>
488 +        <attribute name="Built-By" value="${user.name}"/>
489 +        <attribute name="Implementation-Vendor" value="JCP JSR-166 Expert Group."/>
490 +      </manifest>
491      </jar>
492    </target>
493  
# Line 396 | Line 519 | As of 2013-02, the very latest lambda 8
519      <mirror-dir src="${docs.dir}" dst="${dist.docs.dir}"/>
520    </target>
521  
522 <
400 <  <target name="test-tck"
522 >  <target name="tck"
523            depends="jar"
524 <          description="Runs tck tests for main directly">
524 >          description="Runs tck tests for src/main directly">
525  
526      <run-tck-tests
527 <      target="8"
527 >      target="${build.main.java.version}"
528        workdir="${build.dir}"
529        classes="${product.jar}"/>
530    </target>
531  
532 <  <target name="test-jtreg"
532 >  <target name="tck-parallelism-1"
533 >          description="Runs tck with given common pool parallelism">
534 >    <antcall target="tck">
535 >      <param name="java.util.concurrent.ForkJoinPool.common.parallelism" value="1"/>
536 >    </antcall>
537 >  </target>
538 >
539 >  <target name="tck-parallelism-0"
540 >          description="Runs tck with given common pool parallelism">
541 >    <antcall target="tck">
542 >      <param name="java.util.concurrent.ForkJoinPool.common.parallelism" value="0"/>
543 >    </antcall>
544 >  </target>
545 >
546 >  <target name="jtreg"
547            depends="jar"
548 <          description="Runs jtreg tests for main using the jtreg ant task">
548 >          description="Runs jtreg tests for src/main using the jtreg ant task">
549      <run-jtreg-tests
550 <       target="8"
550 >       target="${build.main.java.version}"
551         workdir="${build.dir}"
552         classes="${product.jar}"/>
553    </target>
554  
555    <target name="test"
556 <          depends="test-tck, test-jtreg"
557 <          description="Runs tck and jtreg tests for main">
556 >          depends="tck, tck-parallelism-1, jtreg"
557 >          description="Runs tck and jtreg tests for src/main">
558    </target>
559  
560 + <!--   <target name="jtreg8" description="Runs jtreg tests with jdk8"> -->
561 +
562 + <!--     <antcall target="jtreg"> -->
563 + <!--       <param name="build.main.java.version" value="8"/> -->
564 + <!--       <param name="build.main.javac" value="${javac8}"/> -->
565 + <!--     </antcall> -->
566 +
567 + <!--   </target> -->
568 +
569 + <!--   <target name="test89" -->
570 + <!--           description="Runs tck and jtreg tests for src/main for multiple java versions"> -->
571 +
572 + <!--     <antcall target="clean"/> -->
573 + <!--     <antcall target="test"> -->
574 + <!--       <param name="build.main.java.version" value="8"/> -->
575 + <!--       <param name="build.main.javac" value="${javac8}"/> -->
576 + <!--     </antcall> -->
577 +
578 + <!--     <antcall target="clean"/> -->
579 + <!--     <antcall target="test"> -->
580 + <!--       <param name="build.main.java.version" value="9"/> -->
581 + <!--       <param name="build.main.javac" value="${javac9}"/> -->
582 + <!--     </antcall> -->
583 +
584 + <!--   </target> -->
585 +
586  
587  
588    <target name="configure-compiler">
589 +    <fail message="ant version too old">
590 +      <condition>
591 +        <not> <antversion atleast="1.9.1"/> </not>
592 +      </condition>
593 +    </fail>
594  
595      <property name="unchecked.option" value="-Xlint:unchecked"/>
596  
# Line 444 | Line 611 | As of 2013-02, the very latest lambda 8
611    <!-- Various demos and test programs -->
612  
613  
614 <  <target name="loops" depends="configure-compiler"
615 <          description="Benchmark from Doug Lea's AQS paper">
614 >  <!-- description="Benchmark from Doug Lea's AQS paper" -->
615 >  <target name="loops" depends="configure-compiler">
616  
617      <mkdir dir="${build.loops.dir}"/>
618  
# Line 455 | Line 622 | As of 2013-02, the very latest lambda 8
622         debuglevel="${build.debuglevel}"
623        deprecation="${build.deprecation}"
624             source="${build.sourcelevel}"
625 +           target="${build.sourcelevel}"
626               fork="true">
627  
628        <compilerarg line="${build.args}"/>
# Line 470 | Line 638 | As of 2013-02, the very latest lambda 8
638    </target>
639  
640  
641 +  <target name="compile-test-loops" depends="jar"
642 +          description="compile all the perf tests in src/test/loops">
643 +
644 +    <mkdir dir="${build.dir}/test/loops"/>
645 +
646 +    <javac srcdir="${basedir}/src/test/loops"
647 +           destdir="${build.dir}/test/loops"
648 +           debug="${build.debug}"
649 +           debuglevel="${build.debuglevel}"
650 +           deprecation="${build.deprecation}"
651 +           includeAntRuntime="false"
652 +           includeJavaRuntime="false"
653 +           executable="${javac9}"
654 +           fork="true">
655 +
656 +      <include name="*.java"/>
657 +      <compilerarg value="-XDignore.symbol.file=true"/>
658 +      <compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial"/>
659 +      <compilerarg value="-Xbootclasspath/p:${product.jar}"/>
660 +      <compilerarg line="${build.args}"/>
661 +
662 +    </javac>
663 +
664 +  </target>
665 +
666 +
667 +  <!-- jsr166 4jdk8 -->
668 +
669 +  <target name="4jdk8compile"
670 +          depends="configure-compiler"
671 +          description="Compiles src/jdk8 sources, targeting jdk8">
672 +
673 +    <mkdir dir="${build.4jdk8.classes.dir}"/>
674 +
675 +    <javac srcdir="${4jdk8src.dir}"
676 +           destdir="${build.4jdk8.classes.dir}"
677 +           debug="${build.debug}"
678 +           debuglevel="${build.debuglevel}"
679 +           deprecation="${build.deprecation}"
680 +           source="8"
681 +           target="8"
682 +           classpath=""
683 +           bootclasspath="${bootclasspath8}"
684 +           includeAntRuntime="false"
685 +           includeJavaRuntime="false"
686 +           executable="${javac8}"
687 +           fork="true">
688 +
689 +      <include name="**/*.java"/>
690 +      <compilerarg value="-Xprefer:source"/>
691 +      <compilerarg value="-XDignore.symbol.file=true"/>
692 +      <compilerarg value="-Xlint:all"/>
693 +      <compilerarg value="-Werror"/>
694 +      <compilerarg line="${build.args}"/>
695 +
696 +    </javac>
697 +  </target>
698 +
699 +  <target name="4jdk8doclint"
700 +          depends="configure-compiler"
701 +          description="Finds doclint warnings">
702 +
703 +    <mkdir dir="${build.4jdk8.classes.dir}"/>
704 +
705 +    <javac srcdir="${4jdk8src.dir}"
706 +           destdir="${build.4jdk8.classes.dir}"
707 +           debug="${build.debug}"
708 +           debuglevel="${build.debuglevel}"
709 +           deprecation="${build.deprecation}"
710 +           source="8"
711 +           target="8"
712 +           classpath=""
713 +           bootclasspath="${bootclasspath8}"
714 +           includeAntRuntime="false"
715 +           includeJavaRuntime="false"
716 +           executable="${javac8}"
717 +           fork="true">
718 +
719 +      <include name="**/*.java"/>
720 +      <compilerarg value="-Xprefer:source"/>
721 +      <compilerarg value="-XDignore.symbol.file=true"/>
722 +      <compilerarg value="-Xlint:all"/>
723 +      <compilerarg value="-Xdoclint:all/protected"/>
724 +      <compilerarg line="${build.args}"/>
725 +
726 +    </javac>
727 +  </target>
728 +
729 +
730 +  <target name="4jdk8jar"
731 +          depends="4jdk8compile"
732 +          description="Builds library jar from compiled sources">
733 +
734 +    <jar destfile="${4jdk8product.jar}">
735 +      <fileset dir="${build.4jdk8.classes.dir}"/>
736 +      <manifest>
737 +        <attribute name="Built-By" value="${user.name}"/>
738 +        <attribute name="Implementation-Vendor" value="JCP JSR-166 Expert Group."/>
739 +      </manifest>
740 +    </jar>
741 +
742 +  </target>
743 +
744 +
745 +  <target name="4jdk8-tck"
746 +          depends="4jdk8jar"
747 +          description="Runs tck tests for jsr166-4jdk8 directly">
748 +
749 +    <run-tck-tests
750 +      target="8"
751 +      workdir="${build.4jdk8.dir}"
752 +      classes="${4jdk8product.jar}">
753 +      <javac-elements>
754 +        <!-- JDK9+ test classes -->
755 +        <exclude name="*9Test.java"/>
756 +        <exclude name="*10Test.java"/>
757 +      </javac-elements>
758 +    </run-tck-tests>
759 +  </target>
760 +
761 +
762 +  <target name="4jdk8-jtreg"
763 +          depends="4jdk8jar"
764 +          description="Runs jtreg tests for jsr166-4jdk8 using the jtreg ant task">
765 +    <run-jtreg-tests
766 +       target="8"
767 +       workdir="${build.4jdk8.dir}"
768 +       classes="${4jdk8product.jar}"/>
769 +  </target>
770 +
771 +
772 +  <target name="4jdk8-test"
773 +          depends="4jdk8-tck, 4jdk8-jtreg"
774 +          description="Runs tck and jtreg tests for jsr166-4jdk8">
775 +  </target>
776 +
777 +
778 +  <target name="4jdk8docs"
779 +          description="Builds javadocs for src/jdk8 to dist dir">
780 +
781 +    <delete dir="${4jdk8docs.dir}"/>
782 +    <mkdir dir="${4jdk8docs.dir}"/>
783 +
784 +    <javadoc destdir="${4jdk8docs.dir}"
785 +             packagenames="none"
786 +             link="${java8.api.url}"
787 +             overview="${4jdk8src.dir}/intro.html"
788 +             access="${build.javadoc.access}"
789 +             sourcepath="${4jdk8src.dir}:${jdk8.src.dir}"
790 +             classpath=""
791 +             executable="${javadoc8}"
792 +             failonerror = "true">
793 +      <fileset dir="${4jdk8src.dir}" defaultexcludes="yes">
794 +        <include name="**/*.java"/>
795 +      </fileset>
796 +      <arg line="-Xdocrootparent ${java8.docroot.url}"/>
797 +      <arg value="-XDignore.symbol.file=true"/>
798 +      <arg value="-tag"/>
799 +      <arg value="${javadoc.jls.option}"/>
800 +      <arg value="-tag"/>
801 +      <arg value="apiNote:a:&lt;em&gt;API Note:&lt;/em&gt;"/>
802 +      <arg value="-tag"/>
803 +      <arg value="implSpec:a:&lt;em&gt;Implementation Requirements:&lt;/em&gt;"/>
804 +      <arg value="-tag"/>
805 +      <arg value="implNote:a:&lt;em&gt;Implementation Note:&lt;/em&gt;"/>
806 +    </javadoc>
807 +  </target>
808 +
809 +
810 +  <target name="4jdk8dist"
811 +          depends="4jdk8dist-jar, 4jdk8dist-docs"
812 +          description="Puts all distributable products in single hierarchy"/>
813 +
814 +
815 +  <target name="4jdk8clean"
816 +          description="Removes all 4jdk8 build products">
817 +
818 +    <delete dir="${build.4jdk8.dir}"/>
819 +
820 +  </target>
821 +
822 +
823 +  <target name="4jdk8dist-jar"
824 +          depends="4jdk8clean, 4jdk8jar">
825 +    <copy file="${4jdk8product.jar}" todir="${dist.dir}"/>
826 +  </target>
827 +
828 +
829 +  <target name="4jdk8dist-docs"
830 +          depends="4jdk8clean, 4jdk8docs">
831 +    <mirror-dir src="${4jdk8docs.dir}" dst="${dist.4jdk8docs.dir}"/>
832 +  </target>
833 +
834 +
835 +
836    <!-- jsr166 4jdk7 -->
837  
838    <target name="4jdk7compile"
# Line 484 | Line 847 | As of 2013-02, the very latest lambda 8
847             debuglevel="${build.debuglevel}"
848             deprecation="${build.deprecation}"
849             source="6"
850 +           target="6"
851             classpath=""
852             bootclasspath="${bootclasspath6}"
853             includeAntRuntime="false"
# Line 495 | Line 859 | As of 2013-02, the very latest lambda 8
859        <compilerarg value="-Xprefer:source"/>
860        <compilerarg value="-XDignore.symbol.file=true"/>
861        <compilerarg value="-Xlint:all"/>
862 +      <compilerarg value="-Werror"/>
863 +      <compilerarg line="${build.args}"/>
864 +
865 +    </javac>
866 +  </target>
867 +
868 +  <target name="4jdk7doclint"
869 +          depends="configure-compiler"
870 +          description="Finds doclint warnings">
871 +
872 +    <mkdir dir="${build.4jdk7.classes.dir}"/>
873 +
874 +    <javac srcdir="${4jdk7src.dir}"
875 +           destdir="${build.4jdk7.classes.dir}"
876 +           debug="${build.debug}"
877 +           debuglevel="${build.debuglevel}"
878 +           deprecation="${build.deprecation}"
879 +           source="6"
880 +           target="6"
881 +           classpath=""
882 +           bootclasspath="${bootclasspath6}"
883 +           includeAntRuntime="false"
884 +           includeJavaRuntime="false"
885 +           executable="${javac8}"
886 +           fork="true">
887 +
888 +      <include name="**/*.java"/>
889 +      <compilerarg value="-Xprefer:source"/>
890 +      <compilerarg value="-XDignore.symbol.file=true"/>
891 +      <compilerarg value="-Xlint:all"/>
892 +      <compilerarg value="-Xdoclint:all/protected"/>
893        <compilerarg line="${build.args}"/>
894  
895      </javac>
# Line 507 | Line 902 | As of 2013-02, the very latest lambda 8
902  
903      <jar destfile="${4jdk7product.jar}">
904        <fileset dir="${build.4jdk7.classes.dir}"/>
905 +      <manifest>
906 +        <attribute name="Built-By" value="${user.name}"/>
907 +        <attribute name="Implementation-Vendor" value="JCP JSR-166 Expert Group."/>
908 +      </manifest>
909      </jar>
910  
911    </target>
912  
913  
914 <  <target name="4jdk7-test-tck"
914 >  <target name="4jdk7-tck"
915            depends="4jdk7jar"
916            description="Runs tck tests for jsr166-4jdk7 directly">
917  
# Line 523 | Line 922 | As of 2013-02, the very latest lambda 8
922        <javac-elements>
923          <!-- JDK8+ test classes -->
924          <exclude name="*8Test.java"/>
925 +        <exclude name="*9Test.java"/>
926 +        <exclude name="*10Test.java"/>
927          <exclude name="DoubleAccumulatorTest.java"/>
928          <exclude name="DoubleAdderTest.java"/>
929          <exclude name="LongAccumulatorTest.java"/>
# Line 530 | Line 931 | As of 2013-02, the very latest lambda 8
931          <exclude name="CompletableFutureTest.java"/>
932          <exclude name="SplittableRandomTest.java"/>
933          <exclude name="StampedLockTest.java"/>
934 +        <exclude name="SubmissionPublisherTest.java"/>
935        </javac-elements>
936      </run-tck-tests>
937    </target>
938  
939  
940 <  <target name="4jdk7-test-tck-junit"
941 <          depends="4jdk7compile"
942 <          description="Runs tck tests for jsr166-4jdk7 via junit task (experimental)">
940 >  <!-- Runs tck tests for jsr166-4jdk7 via junit task (dead experiment) -->
941 >  <target name="4jdk7-tck-junit"
942 >          depends="4jdk7compile">
943  
944      <junit printsummary="true"
945             showoutput="true"
# Line 563 | Line 965 | As of 2013-02, the very latest lambda 8
965      </junit>
966    </target>
967  
968 <  <target name="4jdk7-test-jtreg"
968 >  <target name="4jdk7-jtreg"
969            depends="4jdk7jar"
970            description="Runs jtreg tests for jsr166-4jdk7 using the jtreg ant task">
971      <run-jtreg-tests
972         target="7"
973         workdir="${build.4jdk7.dir}"
974 <       classes="${4jdk7product.jar}"
573 <       jtregflags="-exclude:${jtreg.src.dir}/jdk8tests"/>
974 >       classes="${4jdk7product.jar}"/>
975    </target>
976  
977  
978    <target name="4jdk7-test"
979 <          depends="4jdk7-test-tck, 4jdk7-test-jtreg"
979 >          depends="4jdk7-tck, 4jdk7-jtreg"
980            description="Runs tck and jtreg tests for jsr166-4jdk7">
981    </target>
982  
# Line 588 | Line 989 | As of 2013-02, the very latest lambda 8
989  
990      <javadoc destdir="${4jdk7docs.dir}"
991               packagenames="none"
992 <             link="${jdkapi7docs.url}"
992 >             link="${java7.api.url}"
993               overview="${4jdk7src.dir}/intro.html"
994               access="${build.javadoc.access}"
995 <             sourcepath="${4jdk7src.dir}:${jdk7src.dir}"
995 >             sourcepath="${4jdk7src.dir}:${jdk7.src.dir}"
996               classpath=""
997 <             executable="${javadoc7}">
997 >             executable="${javadoc7}"
998 >             failonerror = "true">
999        <fileset dir="${4jdk7src.dir}" defaultexcludes="yes">
1000          <include name="**/*.java"/>
1001        </fileset>
1002 +      <arg line="-Xdocrootparent ${java7.docroot.url}"/>
1003        <arg value="-XDignore.symbol.file=true"/>
1004      </javadoc>
1005    </target>
# Line 643 | Line 1046 | As of 2013-02, the very latest lambda 8
1046             classpath=""
1047             bootclasspath="${bootclasspath6}"
1048             source="5"
1049 +           target="5"
1050             includeAntRuntime="false"
1051             includeJavaRuntime="false"
1052             executable="${javac7}"
# Line 651 | Line 1055 | As of 2013-02, the very latest lambda 8
1055        <include name="jsr166x/**/*.java"/>
1056        <compilerarg value="-XDignore.symbol.file=true"/>
1057        <compilerarg value="-Xlint:all,-unchecked,-rawtypes"/>
1058 +      <compilerarg value="-Werror"/>
1059        <compilerarg line="${build.args}"/>
1060  
1061      </javac>
# Line 663 | Line 1068 | As of 2013-02, the very latest lambda 8
1068  
1069      <jar destfile="${jsr166x.jar}">
1070        <fileset dir="${build.jsr166x.classes.dir}"/>
1071 +      <manifest>
1072 +        <attribute name="Built-By" value="${user.name}"/>
1073 +        <attribute name="Implementation-Vendor" value="JCP JSR-166 Expert Group."/>
1074 +      </manifest>
1075      </jar>
1076  
1077    </target>
# Line 676 | Line 1085 | As of 2013-02, the very latest lambda 8
1085  
1086      <javadoc destdir="${jsr166xdocs.dir}"
1087               packagenames="jsr166x.*"
1088 <             link="${jdkapidocs.url}"
1088 >             link="${java.api.url}"
1089               access="${build.javadoc.access}"
1090 <             sourcepath="${topsrc.dir}:${jdk6src.dir}"
1090 >             sourcepath="${topsrc.dir}:${jdk6.src.dir}"
1091               bootclasspath="${bootclasspath6}"
1092               source="5"
1093 <             executable="${javadoc7}">
1093 >             executable="${javadoc7}"
1094 >             failonerror = "true">
1095 >      <arg line="-Xdocrootparent ${java.docroot.url}"/>
1096        <arg value="-XDignore.symbol.file=true"/>
1097  
1098      </javadoc>
# Line 726 | Line 1137 | As of 2013-02, the very latest lambda 8
1137             debuglevel="${build.debuglevel}"
1138             deprecation="${build.deprecation}"
1139             source="6"
1140 +           target="6"
1141             classpath=""
1142             bootclasspath="${bootclasspath6}"
1143             includeAntRuntime="false"
# Line 736 | Line 1148 | As of 2013-02, the very latest lambda 8
1148        <include name="jsr166y/**/*.java"/>
1149        <compilerarg value="-XDignore.symbol.file=true"/>
1150        <compilerarg value="-Xlint:all"/>
1151 +      <compilerarg value="-Werror"/>
1152        <compilerarg line="${build.args}"/>
1153  
1154      </javac>
# Line 748 | Line 1161 | As of 2013-02, the very latest lambda 8
1161  
1162      <jar destfile="${jsr166y.jar}" index="true">
1163        <fileset dir="${build.jsr166y.classes.dir}"/>
1164 +      <manifest>
1165 +        <attribute name="Built-By" value="${user.name}"/>
1166 +        <attribute name="Implementation-Vendor" value="JCP JSR-166 Expert Group."/>
1167 +      </manifest>
1168      </jar>
1169  
1170    </target>
# Line 761 | Line 1178 | As of 2013-02, the very latest lambda 8
1178  
1179      <javadoc destdir="${jsr166ydocs.dir}"
1180               packagenames="jsr166y.*"
1181 <             link="${jdkapidocs.url}"
1181 >             link="${java.api.url}"
1182               access="${build.javadoc.access}"
1183 <             sourcepath="${topsrc.dir}:${jdk6src.dir}"
1183 >             sourcepath="${topsrc.dir}:${jdk6.src.dir}"
1184               bootclasspath="${bootclasspath6}"
1185               source="6"
1186 <             executable="${javadoc7}">
1186 >             executable="${javadoc7}"
1187 >             failonerror = "true">
1188 >      <arg line="-Xdocrootparent ${java.docroot.url}"/>
1189        <arg value="-XDignore.symbol.file=true"/>
1190  
1191      </javadoc>
# Line 814 | Line 1233 | As of 2013-02, the very latest lambda 8
1233             bootclasspath="@{jsr166y.jar}:${bootclasspath6}"
1234             classpath=""
1235             source="6"
1236 +           target="6"
1237             includeAntRuntime="false"
1238             includeJavaRuntime="false"
1239             executable="${javac7}"
# Line 822 | Line 1242 | As of 2013-02, the very latest lambda 8
1242        <include name="extra166y/**/*.java"/>
1243        <compilerarg value="-XDignore.symbol.file=true"/>
1244        <compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial"/>
1245 +      <compilerarg value="-Werror"/>
1246        <compilerarg line="${build.args}"/>
1247  
1248      </javac>
# Line 834 | Line 1255 | As of 2013-02, the very latest lambda 8
1255  
1256      <jar destfile="${extra166y.jar}" index="true">
1257        <fileset dir="${build.extra166y.classes.dir}"/>
1258 +      <manifest>
1259 +        <attribute name="Built-By" value="${user.name}"/>
1260 +        <attribute name="Implementation-Vendor" value="JCP JSR-166 Expert Group."/>
1261 +      </manifest>
1262      </jar>
1263  
1264    </target>
# Line 847 | Line 1272 | As of 2013-02, the very latest lambda 8
1272  
1273      <javadoc destdir="${extra166ydocs.dir}"
1274               packagenames="extra166y.*"
1275 <             link="${jdkapidocs.url}"
1275 >             link="${java.api.url}"
1276               access="${build.javadoc.access}"
1277 <             sourcepath="${topsrc.dir}:${jdk6src.dir}"
1277 >             sourcepath="${topsrc.dir}:${jdk6.src.dir}"
1278               bootclasspath="${bootclasspath6}"
1279               source="6"
1280               executable="${javadoc7}">
1281 +      <arg line="-Xdocrootparent ${java.docroot.url}"/>
1282        <arg value="-XDignore.symbol.file=true"/>
1283  
1284      </javadoc>
# Line 899 | Line 1325 | As of 2013-02, the very latest lambda 8
1325             debuglevel="${build.debuglevel}"
1326             deprecation="${build.deprecation}"
1327             source="${build.jsr166e.java.version}"
1328 +           target="${build.jsr166e.java.version}"
1329             classpath=""
1330             includeAntRuntime="false"
1331             includeJavaRuntime="false"
# Line 908 | Line 1335 | As of 2013-02, the very latest lambda 8
1335        <include name="jsr166e/**/*.java"/>
1336        <compilerarg value="-XDignore.symbol.file=true"/>
1337        <compilerarg value="-Xlint:all"/>
1338 +      <compilerarg value="-Werror"/>
1339        <compilerarg line="${build.args}"/>
1340  
1341      </javac>
1342    </target>
1343  
1344 +  <!-- jsr166e: find doclint errors -->
1345 +  <target name="jsr166edoclint">
1346 +
1347 +    <mkdir dir="${build.jsr166e.classes.dir}"/>
1348 +
1349 +    <javac srcdir="${topsrc.dir}"
1350 +           destdir="${build.jsr166e.classes.dir}"
1351 +           debug="${build.debug}"
1352 +           debuglevel="${build.debuglevel}"
1353 +           deprecation="${build.deprecation}"
1354 +           source="${build.jsr166e.java.version}"
1355 +           target="${build.jsr166e.java.version}"
1356 +           classpath=""
1357 +           bootclasspath="${bootclasspath6}"
1358 +           includeAntRuntime="false"
1359 +           includeJavaRuntime="false"
1360 +           executable="${javac8}"
1361 +           fork="true">
1362 +
1363 +      <include name="jsr166e/**/*.java"/>
1364 +      <compilerarg value="-XDignore.symbol.file=true"/>
1365 +      <compilerarg value="-Xlint:all"/>
1366 +      <compilerarg value="-Werror"/>
1367 +      <compilerarg value="-Xdoclint:all/protected"/>
1368 +
1369 +    </javac>
1370 +  </target>
1371 +
1372  
1373    <target name="jsr166ejar"
1374            depends="jsr166ecompile"
# Line 920 | Line 1376 | As of 2013-02, the very latest lambda 8
1376  
1377      <jar destfile="${jsr166e.jar}" index="true">
1378        <fileset dir="${build.jsr166e.classes.dir}"/>
1379 +      <manifest>
1380 +        <attribute name="Built-By" value="${user.name}"/>
1381 +        <attribute name="Implementation-Vendor" value="JCP JSR-166 Expert Group."/>
1382 +      </manifest>
1383      </jar>
1384  
1385    </target>
# Line 933 | Line 1393 | As of 2013-02, the very latest lambda 8
1393  
1394      <javadoc destdir="${jsr166edocs.dir}"
1395               packagenames="jsr166e.*"
1396 <             link="${jdkapidocs.url}"
1396 >             link="${java.api.url}"
1397               access="${build.javadoc.access}"
1398 <             sourcepath="${topsrc.dir}:${jdk6src.dir}"
1398 >             sourcepath="${topsrc.dir}:${jdk6.src.dir}"
1399               source="${build.jsr166e.java.version}"
1400 <             executable="${javadoc7}">
1400 >             executable="${javadoc7}"
1401 >             failonerror = "true">
1402 >      <arg line="-Xdocrootparent ${java.docroot.url}"/>
1403        <arg value="-XDignore.symbol.file=true"/>
1404  
1405      </javadoc>
1406    </target>
1407  
1408  
1409 <  <target name="jsr166e-test-tck-one-java-version"
1409 >  <target name="jsr166e-tck-one-java-version"
1410            depends="jsr166ejar">
1411  
1412      <echo message="Testing with jdk${build.jsr166e.java.version} ..."/>
# Line 956 | Line 1418 | As of 2013-02, the very latest lambda 8
1418        classes="${jsr166e.jar}"/>
1419    </target>
1420  
1421 <  <target name="jsr166e-test-tck"
1421 >  <target name="jsr166e-tck"
1422            description="Runs tck tests for jsr166e for multiple java versions">
1423  
1424   <!--     <antcall target="clean"/> -->
1425 < <!--     <antcall target="jsr166e-test-tck-one-java-version"> -->
1425 > <!--     <antcall target="jsr166e-tck-one-java-version"> -->
1426   <!--       <param name="build.jsr166e.java.version" value="8"/> -->
1427   <!--       <param name="build.jsr166e.javac" value="${javac8}"/> -->
1428   <!--     </antcall> -->
1429  
1430      <antcall target="clean"/>
1431 <    <antcall target="jsr166e-test-tck-one-java-version">
1431 >    <antcall target="jsr166e-tck-one-java-version">
1432        <param name="build.jsr166e.java.version" value="7"/>
1433        <param name="build.jsr166e.javac" value="${javac7}"/>
1434      </antcall>
1435  
1436      <antcall target="clean"/>
1437 <    <antcall target="jsr166e-test-tck-one-java-version">
1437 >    <antcall target="jsr166e-tck-one-java-version">
1438        <param name="build.jsr166e.java.version" value="6"/>
1439        <param name="build.jsr166e.javac" value="${javac6}"/>
1440      </antcall>
# Line 980 | Line 1442 | As of 2013-02, the very latest lambda 8
1442  
1443  
1444    <target name="jsr166e-test"
1445 <          depends="jsr166e-test-tck"
1445 >          depends="jsr166e-tck"
1446            description="Runs all tests for jsr166e">
1447    </target>
1448  
# Line 1010 | Line 1472 | As of 2013-02, the very latest lambda 8
1472  
1473    <target name="lint">
1474      <antcall target="dists">
1475 +      <param name="build.javadoc.access" value="public"/>
1476 +    </antcall>
1477 +  </target>
1478 +
1479 + <!-- Generates all doclint warnings, even for private methods (rarely useful) -->
1480 +  <target name="lint-private">
1481 +    <antcall target="dist">
1482        <param name="build.javadoc.access" value="private"/>
1483      </antcall>
1484    </target>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines