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.120 by jsr166, Mon Jan 21 02:34:44 2013 UTC vs.
Revision 1.143 by dl, Wed Jul 10 17:09:45 2013 UTC

# Line 22 | Line 22
22    $HOME/jdk/src/jdk8
23    where each of the above is a complete JDK source tree
24    (e.g. mercurial forest) or a symlink to same.
25 + As of 2013-02, the very latest lambda 8 jdk is needed for jdk8.
26   ------------------------------------------------------------------------------
27    </description>
28  
29 <  <target name="usage" description="Advises user to run with -projecthelp">
30 <    <echo>Run "ant -projecthelp" for full usage information.</echo>
29 >  <target name="usage" description="Display main targets by running 'ant -projecthelp'">
30 >    <java classname="org.apache.tools.ant.Main">
31 >      <arg value="-projecthelp" />
32 >    </java>
33    </target>
34  
35  
# Line 39 | Line 42
42    <property name="build.debug"          value="true"/>
43    <property name="build.debuglevel"     value="source,lines,vars"/>
44    <property name="build.deprecation"    value="false"/>
45 +  <property name="build.javadoc.access" value="protected"/>
46 +
47 +  <!-- Tck options; see JSR166TestCase.java -->
48 +  <!-- ant -Djsr166.profileTests=true -Djsr166.runsPerTest=100 test-tck -->
49 +  <property name="jsr166.profileTests"     value="false"/>
50 +  <property name="jsr166.profileThreshold" value="100"/>
51 +  <property name="jsr166.runsPerTest"      value="1"/>
52 +  <!-- Allow running an individual tck test class -->
53 +  <!-- ant -Djsr166.tckTestClass=CountedCompleterTest -Djsr166.runsPerTest=100 test-tck -->
54 +  <property name="jsr166.tckTestClass"     value="JSR166TestCase"/>
55  
56    <!-- Build locations -->
57    <property name="build.dir"                   location="build"/>
# Line 57 | Line 70
70    <property name="build.jsr166e.dir"           location="${build.dir}/jsr166e"/>
71    <property name="build.extra166y.dir"         location="${build.dir}/extra166y"/>
72  
73 <  <property name="build.jsr166x.classes.dir"    location="${build.jsr166x.dir}/classes"/>
74 <  <property name="build.jsr166y.classes.dir"    location="${build.jsr166y.dir}/classes"/>
75 <  <property name="build.jsr166e.classes.dir"    location="${build.jsr166e.dir}/classes"/>
76 <  <property name="build.extra166y.classes.dir"  location="${build.extra166y.dir}/classes"/>
73 >  <property name="build.jsr166x.classes.dir"   location="${build.jsr166x.dir}/classes"/>
74 >  <property name="build.jsr166y.classes.dir"   location="${build.jsr166y.dir}/classes"/>
75 >  <property name="build.jsr166e.classes.dir"   location="${build.jsr166e.dir}/classes"/>
76 >  <property name="build.extra166y.classes.dir" location="${build.extra166y.dir}/classes"/>
77  
78    <!-- JDK locations -->
79    <property name="jdks.home"  location="${user.home}/jdk"/>
# Line 86 | Line 99
99      </sequential>
100    </macrodef>
101  
102 +  <macrodef name="mirror-dir">
103 +    <attribute name="src"/>
104 +    <attribute name="dst"/>
105 +    <sequential>
106 +    <delete dir="@{dst}"/>
107 +    <mkdir dir="@{dst}"/>
108 +    <copy todir="@{dst}" preservelastmodified="true">
109 +      <fileset dir="@{src}"/>
110 +    </copy>
111 +    </sequential>
112 +  </macrodef>
113 +
114    <defjdklocations v="6"/>
115    <defjdklocations v="7"/>
116    <defjdklocations v="8"/>
# Line 105 | Line 130
130    <property name="jsr166esrc.dir"       location="${topsrc.dir}/jsr166e"/>
131    <property name="extra166ysrc.dir"     location="${topsrc.dir}/extra166y"/>
132  
133 <  <!-- Distribution locations -->
134 <  <property name="dist.javadocs.dir"          location="${dist.dir}/jsr166.docs"/>
135 <  <property name="dist.4jdk7.docs.dir"        location="${dist.dir}/jsr166-4jdk7.docs"/>
136 <  <property name="dist.jsr166xjavadocs.dir"   location="${dist.dir}/jsr166x.docs"/>
137 <  <property name="dist.jsr166yjavadocs.dir"   location="${dist.dir}/jsr166y.docs"/>
138 <  <property name="dist.jsr166ejavadocs.dir"   location="${dist.dir}/jsr166e.docs"/>
139 <  <property name="dist.extra166yjavadocs.dir" location="${dist.dir}/extra166y.docs"/>
133 >  <!-- Javadoc locations -->
134 >  <property name="docs.dir"          location="${build.dir}/docs"/>
135 >  <property name="4jdk7docs.dir"     location="${build.4jdk7.dir}/docs"/>
136 >  <property name="jsr166xdocs.dir"   location="${build.jsr166x.dir}/docs"/>
137 >  <property name="jsr166ydocs.dir"   location="${build.jsr166y.dir}/docs"/>
138 >  <property name="jsr166edocs.dir"   location="${build.jsr166e.dir}/docs"/>
139 >  <property name="extra166ydocs.dir" location="${build.extra166y.dir}/docs"/>
140 >
141 >  <property name="dist.docs.dir"          location="${dist.dir}/docs"/>
142 >  <property name="dist.4jdk7docs.dir"     location="${dist.dir}/jsr166-4jdk7docs"/>
143 >  <property name="dist.jsr166xdocs.dir"   location="${dist.dir}/jsr166xdocs"/>
144 >  <property name="dist.jsr166ydocs.dir"   location="${dist.dir}/jsr166ydocs"/>
145 >  <property name="dist.jsr166edocs.dir"   location="${dist.dir}/jsr166edocs"/>
146 >  <property name="dist.extra166ydocs.dir" location="${dist.dir}/extra166ydocs"/>
147  
148    <!-- Jar locations -->
149    <property name="product.jar"      location="${build.dir}/jsr166.jar"/>
# Line 128 | Line 160
160    <property name="jdkapi7docs.url"      value="http://docs.oracle.com/javase/7/docs/api/"/>
161  
162    <property name="jdkapi8docs.url"      value="http://download.java.net/jdk8/docs/api/"/>
163 <  <!-- The below does not yet exist as of 2012-11 -->
163 >  <!-- The below does not yet exist as of 2013-01 -->
164    <!-- <property name="jdkapi8docs.url" value="http://docs.oracle.com/javase/8/docs/api/"/> -->
165  
166    <!-- Default jdk api doc location (latest stable release seems best) -->
# Line 146 | Line 178
178    </path>
179  
180    <macrodef name="run-tck-tests">
181 +    <attribute name="tck.src.dir" default="${tck.src.dir}"/>
182      <attribute name="target"/>
183 +    <attribute name="compile-target" default="@{target}"/>
184      <attribute name="workdir"/>
185 <    <attribute name="product.jar" default="${product.jar}"/>
185 >    <attribute name="classes"/>
186      <attribute name="jvmflags" default=""/>
187 +    <element name="javac-elements" optional="true"/>
188      <sequential>
189  
190      <mkdir dir="@{workdir}/tck-classes"/>
191  
192 <    <javac srcdir="${tck.src.dir}"
192 >    <javac srcdir="@{tck.src.dir}"
193             destdir="@{workdir}/tck-classes"
194             debug="${build.debug}"
195             debuglevel="${build.debuglevel}"
196             deprecation="${build.deprecation}"
197 <           source="6"
197 >           source="@{compile-target}"
198 >           target="@{compile-target}"
199             classpath="${junit.jar}"
200 <           bootclasspath="@{product.jar}:${bootclasspath6}"
200 >           bootclasspath="@{classes}:${bootclasspath@{compile-target}}"
201             includeAntRuntime="false"
202             includeJavaRuntime="false"
203 <           executable="${javac@{target}}"
203 >           executable="${javac@{compile-target}}"
204             fork="true">
205  
206 <      <include name="JSR166TestCase.java"/>
206 >      <include name="*.java"/>
207        <compilerarg value="-XDignore.symbol.file=true"/>
208        <compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial,-deprecation"/>
209        <compilerarg line="${build.args}"/>
210 +      <javac-elements/>
211  
212      </javac>
213  
214 <    <java classname="JSR166TestCase"
214 >    <java classname="${jsr166.tckTestClass}"
215            failonerror="true"
216            jvm="${java@{target}}"
217            fork="true">
218 <        <jvmarg value="-Xbootclasspath/p:@{product.jar}"/>
218 >        <jvmarg value="-Xbootclasspath/p:@{classes}"/>
219          <jvmarg line="@{jvmflags}"/>
220 +        <sysproperty key="jsr166.profileTests"     value="${jsr166.profileTests}"/>
221 +        <sysproperty key="jsr166.profileThreshold" value="${jsr166.profileThreshold}"/>
222 +        <sysproperty key="jsr166.runsPerTest"      value="${jsr166.runsPerTest}"/>
223          <classpath>
224            <pathelement location="${junit.jar}"/>
225            <pathelement location="@{workdir}/tck-classes"/>
# Line 189 | Line 229
229      </sequential>
230    </macrodef>
231  
232 +  <macrodef name="run-jtreg-tests">
233 +    <attribute name="jtreg.src.dir" default="${jtreg.src.dir}"/>
234 +    <attribute name="source" default="7"/>
235 +    <attribute name="target"/>
236 +    <attribute name="workdir"/>
237 +    <attribute name="classes"/>
238 +    <attribute name="jtregflags" default=""/>
239 +    <sequential>
240 +    <delete dir="@{workdir}/JTwork"   quiet="true"/>
241 +    <delete dir="@{workdir}/JTreport" quiet="true"/>
242 +    <mkdir dir="@{workdir}/JTwork/scratch"/>
243 +    <mkdir dir="@{workdir}/JTreport"/>
244 +    <jtreg dir="@{jtreg.src.dir}"
245 +           jdk="${jdk@{target}.home}"
246 +           workDir="@{workdir}/JTwork"
247 +           reportDir="@{workdir}/JTreport">
248 +
249 +      <arg value="-Xbootclasspath/p:@{classes}"/>
250 +      <arg value="-agentvm"/>
251 +      <arg value="-v:nopass,fail"/>
252 +      <arg value="-vmoptions:-esa -ea"/>
253 +      <arg value="-automatic"/>
254 +      <arg value="-k:!ignore"/>
255 +      <arg line="@{jtregflags}"/>
256 +    </jtreg>
257 +    </sequential>
258 +  </macrodef>
259 +
260    <!-- ALoops classpath -->
261    <path id="loops.classpath">
262      <pathelement location="${build.loops.dir}"/>
# Line 222 | Line 290
290             fork="true">
291  
292        <include name="**/*.java"/>
293 +      <compilerarg value="-Xprefer:source"/>
294        <compilerarg value="-XDignore.symbol.file=true"/>
295        <compilerarg value="-Xlint:all"/>
296        <compilerarg line="${build.args}"/>
# Line 240 | Line 309
309    </target>
310  
311  
243  <target name="test"
244          depends="configure-tests, report-tests"
245          description="Runs all tests (requires JUnit 3.8.1 in ${ant.home}/lib)" />
246
247
312    <target name="docs"
313            description="Builds javadocs for src/main to dist dir">
314  
315 <    <delete dir="${dist.javadocs.dir}"/>
316 <    <mkdir dir="${dist.javadocs.dir}"/>
315 >    <delete dir="${docs.dir}"/>
316 >    <mkdir dir="${docs.dir}"/>
317  
318      <!-- the packagenames="none" hack below prevents scanning the -->
319      <!-- sourcepath for packages -->
320  
321 <    <javadoc destdir="${dist.javadocs.dir}"
321 >    <javadoc destdir="${docs.dir}"
322               packagenames="none"
323               link="${jdkapi8docs.url}"
324               overview="${src.dir}/intro.html"
325 +             access="${build.javadoc.access}"
326               sourcepath="${src.dir}:${jdk8src.dir}"
327               classpath=""
328               executable="${javadoc8}">
# Line 267 | Line 332
332        <arg value="-XDignore.symbol.file=true"/>
333        <arg value="-tag"/>
334        <arg value="${javadoc.jls.option}"/>
335 +      <arg value="-tag"/>
336 +      <arg value="apiNote:a:&lt;em&gt;API Note:&lt;/em&gt;"/>
337 +      <arg value="-tag"/>
338 +      <arg value="implSpec:a:&lt;em&gt;Implementation Requirements:&lt;/em&gt;"/>
339 +      <arg value="-tag"/>
340 +      <arg value="implNote:a:&lt;em&gt;Implementation Note:&lt;/em&gt;"/>
341      </javadoc>
342    </target>
343  
344  
345    <target name="dist"
346 <          depends="dist-clean, dist-jar, docs"
346 >          depends="dist-clean, dist-jar, dist-docs"
347            description="Puts all distributable products in single hierarchy"/>
348  
349  
# Line 310 | Line 381
381    </target>
382  
383  
313  <!-- Internal targets -->
314
315
384    <target name="dist-jar"
385            depends="clean, jar">
318
386      <copy file="${product.jar}" todir="${dist.dir}"/>
320
387    </target>
388  
389 <
390 <  <target name="compile-tests"
391 <          depends="jar">
326 <
327 <    <mkdir dir="${build.testcases.dir}"/>
328 <
329 <    <javac srcdir="${tck.src.dir}"
330 <           destdir="${build.testcases.dir}"
331 <           debug="${build.debug}"
332 <           debuglevel="${build.debuglevel}"
333 <           deprecation="${build.deprecation}"
334 <           source="6"
335 <           classpath="${junit.jar}"
336 <           bootclasspath="@{product.jar}:${bootclasspath6}"
337 <           includeAntRuntime="false"
338 <           includeJavaRuntime="false"
339 <           executable="${javac8}"
340 <           fork="true">
341 <
342 <      <include name="**/*.java"/>
343 <      <compilerarg value="-XDignore.symbol.file=true"/>
344 <      <compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial,-deprecation"/>
345 <      <compilerarg line="${build.args}"/>
346 <
347 <    </javac>
348 <
349 <    <javac srcdir="${test.src.dir}"
350 <           destdir="${build.testcases.dir}"
351 <           debug="${build.debug}"
352 <           debuglevel="${build.debuglevel}"
353 <           deprecation="${build.deprecation}"
354 <           source="6"
355 <           classpath=""
356 <           bootclasspath="@{product.jar}:${bootclasspath6}"
357 <           includeAntRuntime="false"
358 <           includeJavaRuntime="false"
359 <           executable="${javac8}"
360 <           fork="true">
361 <
362 <      <include name="jsr166/test/**/*.java"/>
363 <      <compilerarg value="-XDignore.symbol.file=true"/>
364 <      <compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial,-deprecation"/>
365 <      <compilerarg line="${build.args}"/>
366 <
367 <    </javac>
368 <
369 < <!--
370 <    <javac srcdir="${jtreg.src.dir}"
371 <          destdir="${build.testcases.dir}"
372 <            debug="${build.debug}"
373 <       debuglevel="${build.debuglevel}"
374 <      deprecation="${build.deprecation}"
375 <           source="${build.sourcelevel}"
376 <             fork="true">
377 <
378 <      <compilerarg value="-Xbootclasspath/p:${product.jar}"/>
379 <      <compilerarg value="-XDignore.symbol.file=true"/>
380 <      <compilerarg line="${build.args}"/>
381 <
382 <    </javac>
383 < -->
384 <
389 >  <target name="dist-docs"
390 >          depends="clean, docs">
391 >    <mirror-dir src="${docs.dir}" dst="${dist.docs.dir}"/>
392    </target>
393  
394  
395 <  <target name="run-tests"
396 <          depends="compile-tests">
397 <
391 <    <!-- May be overridden by user.properties -->
392 <    <property name="testcase" value="*"/>
393 <
394 <    <mkdir dir="${build.reports.dir}"/>
395 <
396 <    <junit printsummary="true"
397 <             showoutput="true"
398 <          errorProperty="junit.failed"
399 <        failureProperty="junit.failed"
400 <                    dir="${build.reports.dir}"
401 <                    jvm="${java8}"
402 <                   fork="true">
403 <
404 <      <jvmarg value="-Xbootclasspath/p:${product.jar}"/>
405 <      <jvmarg value="-server"/>
406 <      <jvmarg value="-showversion"/>
407 <
408 <      <classpath refid="test.classpath"/>
409 <
410 <      <formatter type="xml"/>
411 <
412 <      <batchtest todir="${build.reports.dir}" unless="no.test.tck">
413 <        <fileset dir="${tck.src.dir}">
414 <          <include name="**/${testcase}Test.java"/>
415 <        </fileset>
416 <      </batchtest>
417 <
418 <      <batchtest todir="${build.reports.dir}" if="do.test.old">
419 <        <fileset dir="${test.src.dir}">
420 <          <include name="jsr166/test/**/${testcase}Test.java"/>
421 <        </fileset>
422 <      </batchtest>
423 <
424 < <!--
425 <      <batchtest todir="${build.reports.dir}" if="do.test.jtreg">
426 <        <fileset dir="${jtreg.src.dir}">
427 <          <include name="**/${testcase}Test.java"/>
428 <        </fileset>
429 <      </batchtest>
430 < -->
431 <
432 <    </junit>
395 >  <target name="test-tck"
396 >          depends="jar"
397 >          description="Runs tck tests for main directly">
398  
399 +    <run-tck-tests
400 +      target="8"
401 +      workdir="${build.dir}"
402 +      classes="${product.jar}"/>
403    </target>
404  
405 +  <target name="test-jtreg"
406 +          depends="jar"
407 +          description="Runs jtreg tests for main using the jtreg ant task">
408 +    <run-jtreg-tests
409 +       target="8"
410 +       workdir="${build.dir}"
411 +       classes="${product.jar}"/>
412 +  </target>
413  
414 <  <target name="report-tests"
415 <          depends="run-tests">
416 <
440 <    <!-- Sets junit.report.format to frames if redirection is present,
441 <         otherwise sets it to noframes. -->
442 <    <available property="junit.report.format"
443 <                  value="frames"
444 <              classname="org.apache.xalan.lib.Redirect"
445 <    />
446 <    <property name="junit.report.format" value="noframes"/>
447 <
448 <    <junitreport todir="${build.reports.dir}">
449 <      <fileset dir="${build.reports.dir}">
450 <        <include name="TEST-*.xml"/>
451 <      </fileset>
452 <      <report format="${junit.report.format}" todir="${build.reports.dir}"
453 <      />
454 <    </junitreport>
455 <
456 <    <fail message="Test Cases Failed" if="junit.failed"/>
457 <
414 >  <target name="test"
415 >          depends="test-tck, test-jtreg"
416 >          description="Runs tck and jtreg tests for main">
417    </target>
418  
419  
420 +
421    <target name="configure-compiler">
422  
423      <property name="unchecked.option" value="-Xlint:unchecked"/>
# Line 475 | Line 435
435    </target>
436  
437  
478  <target name="configure-tests"
479       depends="configure-compiler">
480
481    <!-- junit.framework.Protectable is in JUnit 3.8.1 but not in 3.7 -->
482    <available property="junit.available"
483               classname="junit.framework.Protectable"/>
484
485    <!-- Xalan -->
486    <available property="xalan.available"
487               classname="org.apache.xalan.Version"/>
488
489
490    <!-- Ant 1.6beta and later don't need or want this check -->
491    <!--
492    <fail message="Need JUnit 3.8.1 in ${ant.home}${file.separator}lib to run tests"
493          unless="junit.available"/>
494
495    <fail message="Need Xalan 2.5.1 jar in ${ant.home}${file.separator}lib to run tests"
496          unless="xalan.available"/>
497    -->
498
499  </target>
500
438  
439    <!-- Various demos and test programs -->
440  
# Line 550 | Line 487
487             fork="true">
488  
489        <include name="**/*.java"/>
490 +      <compilerarg value="-Xprefer:source"/>
491        <compilerarg value="-XDignore.symbol.file=true"/>
492        <compilerarg value="-Xlint:all"/>
493        <compilerarg line="${build.args}"/>
# Line 558 | Line 496
496    </target>
497  
498  
499 <  <target name="4jdk7-jar"
499 >  <target name="4jdk7jar"
500            depends="4jdk7compile"
501            description="Builds library jar from compiled sources">
502  
# Line 570 | Line 508
508  
509  
510    <target name="4jdk7-test-tck"
511 <          depends="4jdk7-jar"
511 >          depends="4jdk7jar"
512            description="Runs tck tests for jsr166-4jdk7 directly">
513  
514      <run-tck-tests
515        target="7"
516        workdir="${build.4jdk7.dir}"
517 <      product.jar="${4jdk7product.jar}"/>
517 >      classes="${4jdk7product.jar}">
518 >      <javac-elements>
519 >        <!-- JDK8+ test classes -->
520 >        <exclude name="*8Test.java"/>
521 >        <exclude name="DoubleAccumulatorTest.java"/>
522 >        <exclude name="DoubleAdderTest.java"/>
523 >        <exclude name="LongAccumulatorTest.java"/>
524 >        <exclude name="LongAdderTest.java"/>
525 >        <exclude name="CompletableFutureTest.java"/>
526 >        <exclude name="StampedLockTest.java"/>
527 >      </javac-elements>
528 >    </run-tck-tests>
529    </target>
530  
531  
# Line 602 | Line 551
551  
552        <formatter type="brief"/>
553  
554 <      <test name="JSR166TestCase" haltonfailure="no">
554 >      <test name="${jsr166.tckTestClass}" haltonfailure="no">
555        </test>
556  
557      </junit>
558    </target>
559  
560    <target name="4jdk7-test-jtreg"
561 <          depends="4jdk7compile"
561 >          depends="4jdk7jar"
562            description="Runs jtreg tests for jsr166-4jdk7 using the jtreg ant task">
563 <    <delete dir="${build.4jdk7.dir}/JTwork"   quiet="true"/>
564 <    <delete dir="${build.4jdk7.dir}/JTreport" quiet="true"/>
565 <    <mkdir dir="${build.4jdk7.dir}/JTwork/scratch"/>
566 <    <mkdir dir="${build.4jdk7.dir}/JTreport"/>
567 <    <jtreg dir="${jtreg.src.dir}"
619 <           jdk="${jdk7.home}"
620 <           workDir="${build.4jdk7.dir}/JTwork"
621 <           reportDir="${build.4jdk7.dir}/JTreport">
622 <
623 <      <arg value="-Xbootclasspath/p:${4jdk7product.jar}"/>
624 <      <arg value="-agentvm"/>
625 <      <arg value="-v:nopass,fail"/>
626 <      <arg value="-vmoptions:-esa -ea"/>
627 <      <arg value="-automatic"/>
628 <      <arg value="-k:!ignore"/>
629 <    </jtreg>
563 >    <run-jtreg-tests
564 >       target="7"
565 >       workdir="${build.4jdk7.dir}"
566 >       classes="${4jdk7product.jar}"
567 >       jtregflags="-exclude:${jtreg.src.dir}/jdk8tests"/>
568    </target>
569  
570  
# Line 639 | Line 577
577    <target name="4jdk7docs"
578            description="Builds javadocs for src/jdk7 to dist dir">
579  
580 <    <delete dir="${dist.4jdk7.docs.dir}"/>
581 <    <mkdir dir="${dist.4jdk7.docs.dir}"/>
580 >    <delete dir="${4jdk7docs.dir}"/>
581 >    <mkdir dir="${4jdk7docs.dir}"/>
582  
583 <    <javadoc destdir="${dist.4jdk7.docs.dir}"
583 >    <javadoc destdir="${4jdk7docs.dir}"
584               packagenames="none"
585               link="${jdkapi7docs.url}"
586               overview="${4jdk7src.dir}/intro.html"
587 +             access="${build.javadoc.access}"
588               sourcepath="${4jdk7src.dir}:${jdk7src.dir}"
589               classpath=""
590               executable="${javadoc7}">
# Line 658 | Line 597
597  
598  
599    <target name="4jdk7dist"
600 <          depends="4jdk7dist-clean, 4jdk7dist-jar, 4jdk7docs"
600 >          depends="4jdk7dist-jar, 4jdk7dist-docs"
601            description="Puts all distributable products in single hierarchy"/>
602  
603  
# Line 676 | Line 615
615    </target>
616  
617    <target name="4jdk7dist-jar"
618 <          depends="4jdk7clean, 4jdk7-jar">
680 <
618 >          depends="4jdk7clean, 4jdk7jar">
619      <copy file="${4jdk7product.jar}" todir="${dist.dir}"/>
620 +  </target>
621  
622 +
623 +  <target name="4jdk7dist-docs"
624 +          depends="4jdk7clean, 4jdk7docs">
625 +    <mirror-dir src="${4jdk7docs.dir}" dst="${dist.4jdk7docs.dir}"/>
626    </target>
627  
628  
# Line 713 | Line 656
656    </target>
657  
658  
659 <  <target name="jsr166x-jar"
659 >  <target name="jsr166xjar"
660            depends="jsr166xcompile"
661            description="Builds library jar from compiled sources">
662  
# Line 727 | Line 670
670    <target name="jsr166xdocs"
671            description="Builds javadocs to dist dir">
672  
673 <    <delete dir="${dist.jsr166xjavadocs.dir}"/>
674 <    <mkdir dir="${dist.jsr166xjavadocs.dir}"/>
673 >    <delete dir="${jsr166xdocs.dir}"/>
674 >    <mkdir dir="${jsr166xdocs.dir}"/>
675  
676 <    <javadoc destdir="${dist.jsr166xjavadocs.dir}"
676 >    <javadoc destdir="${jsr166xdocs.dir}"
677               packagenames="jsr166x.*"
678               link="${jdkapidocs.url}"
679 +             access="${build.javadoc.access}"
680               sourcepath="${topsrc.dir}:${jdk6src.dir}"
681               bootclasspath="${bootclasspath6}"
682               source="5"
# Line 744 | Line 688
688  
689  
690    <target name="jsr166xdist"
691 <          depends="jsr166xdist-clean, jsr166xdist-jar, jsr166xdocs"
691 >          depends="jsr166xdist-jar, jsr166xdist-docs"
692            description="Puts all distributable products in single hierarchy"/>
693  
694  
# Line 763 | Line 707
707  
708  
709    <target name="jsr166xdist-jar"
710 <          depends="jsr166xclean, jsr166x-jar">
767 <
710 >          depends="jsr166xclean, jsr166xjar">
711      <copy file="${jsr166x.jar}" todir="${dist.dir}"/>
712 +  </target>
713  
714 +  <target name="jsr166xdist-docs"
715 +          depends="jsr166xclean, jsr166xdocs">
716 +    <mirror-dir src="${jsr166xdocs.dir}" dst="${dist.jsr166xdocs.dir}"/>
717    </target>
718  
719    <!-- jsr166y -->
# Line 800 | Line 747
747    </target>
748  
749  
750 <  <target name="jsr166y-jar"
750 >  <target name="jsr166yjar"
751            depends="jsr166ycompile"
752            description="Builds library jar from compiled sources">
753  
# Line 814 | Line 761
761    <target name="jsr166ydocs"
762            description="Builds javadocs to dist dir">
763  
764 <    <delete dir="${dist.jsr166yjavadocs.dir}"/>
765 <    <mkdir dir="${dist.jsr166yjavadocs.dir}"/>
764 >    <delete dir="${jsr166ydocs.dir}"/>
765 >    <mkdir dir="${jsr166ydocs.dir}"/>
766  
767 <    <javadoc destdir="${dist.jsr166yjavadocs.dir}"
767 >    <javadoc destdir="${jsr166ydocs.dir}"
768               packagenames="jsr166y.*"
769               link="${jdkapidocs.url}"
770 +             access="${build.javadoc.access}"
771               sourcepath="${topsrc.dir}:${jdk6src.dir}"
772               bootclasspath="${bootclasspath6}"
773               source="6"
# Line 831 | Line 779
779  
780  
781    <target name="jsr166ydist"
782 <          depends="jsr166ydist-clean, jsr166ydist-jar, jsr166ydocs"
782 >          depends="jsr166ydist-jar, jsr166ydist-docs"
783            description="Puts all distributable products in single hierarchy"/>
784  
785  
# Line 849 | Line 797
797    </target>
798  
799    <target name="jsr166ydist-jar"
800 <          depends="jsr166yclean, jsr166y-jar">
853 <
800 >          depends="jsr166yclean, jsr166yjar">
801      <copy file="${jsr166y.jar}" todir="${dist.dir}"/>
802 +  </target>
803  
804 +  <target name="jsr166ydist-docs"
805 +          depends="jsr166yclean, jsr166ydocs">
806 +    <mirror-dir src="${jsr166ydocs.dir}" dst="${dist.jsr166ydocs.dir}"/>
807    </target>
808  
809  
# Line 860 | Line 811
811  
812  
813    <target name="extra166ycompile"
814 <          depends="configure-compiler, jsr166y-jar"
814 >          depends="configure-compiler, jsr166yjar"
815            description="Compiles extra166y sources">
816  
817      <mkdir dir="${build.extra166y.classes.dir}"/>
# Line 887 | Line 838
838    </target>
839  
840  
841 <  <target name="extra166y-jar"
841 >  <target name="extra166yjar"
842            depends="extra166ycompile"
843            description="Builds library jar from compiled sources">
844  
# Line 901 | Line 852
852    <target name="extra166ydocs"
853            description="Builds javadocs to build dir">
854  
855 <    <delete dir="${dist.extra166yjavadocs.dir}"/>
856 <    <mkdir dir="${dist.extra166yjavadocs.dir}"/>
855 >    <delete dir="${extra166ydocs.dir}"/>
856 >    <mkdir dir="${extra166ydocs.dir}"/>
857  
858 <    <javadoc destdir="${dist.extra166yjavadocs.dir}"
858 >    <javadoc destdir="${extra166ydocs.dir}"
859               packagenames="extra166y.*"
860               link="${jdkapidocs.url}"
861 +             access="${build.javadoc.access}"
862               sourcepath="${topsrc.dir}:${jdk6src.dir}"
863               bootclasspath="${bootclasspath6}"
864               source="6"
# Line 918 | Line 870
870  
871  
872    <target name="extra166ydist"
873 <          depends="extra166ydist-clean, extra166ydist-jar, extra166ydocs"
873 >          depends="extra166ydist-jar, extra166ydist-docs"
874            description="Puts all distributable products in single hierarchy"/>
875  
876  
# Line 936 | Line 888
888    </target>
889  
890    <target name="extra166ydist-jar"
891 <          depends="extra166yclean, extra166y-jar">
940 <
891 >          depends="extra166yclean, extra166yjar">
892      <copy file="${extra166y.jar}" todir="${dist.dir}"/>
893 +  </target>
894  
895 +  <target name="extra166ydist-docs"
896 +          depends="extra166yclean, extra166ydocs">
897 +    <mirror-dir src="${extra166ydocs.dir}" dst="${dist.extra166ydocs.dir}"/>
898    </target>
899  
900    <!-- jsr166e -->
# Line 971 | Line 926
926    </target>
927  
928  
929 <  <target name="jsr166e-jar"
929 >  <target name="jsr166ejar"
930            depends="jsr166ecompile"
931            description="Builds library jar from compiled sources">
932  
# Line 985 | Line 940
940    <target name="jsr166edocs"
941            description="Builds javadocs to build dir">
942  
943 <    <delete dir="${dist.jsr166ejavadocs.dir}"/>
944 <    <mkdir dir="${dist.jsr166ejavadocs.dir}"/>
943 >    <delete dir="${jsr166edocs.dir}"/>
944 >    <mkdir dir="${jsr166edocs.dir}"/>
945  
946 <    <javadoc destdir="${dist.jsr166ejavadocs.dir}"
946 >    <javadoc destdir="${jsr166edocs.dir}"
947               packagenames="jsr166e.*"
948               link="${jdkapidocs.url}"
949 +             access="${build.javadoc.access}"
950               sourcepath="${topsrc.dir}:${jdk7src.dir}"
951               source="7"
952               executable="${javadoc7}">
# Line 1000 | Line 956
956    </target>
957  
958  
959 +  <target name="jsr166e-test-tck"
960 +          depends="jsr166ejar"
961 +          description="Runs tck tests for jsr166e">
962 +
963 +    <run-tck-tests
964 +      tck.src.dir="${test.src.dir}/tck-jsr166e"
965 +      target="7"
966 +      workdir="${build.jsr166e.dir}"
967 +      classes="${jsr166e.jar}"/>
968 +  </target>
969 +
970 +
971    <target name="jsr166edist"
972 <          depends="jsr166edist-clean, jsr166edist-jar, jsr166edocs"
972 >          depends="jsr166edist-jar, jsr166edist-docs"
973            description="Puts all distributable products in single hierarchy"/>
974  
975  
976    <target name="jsr166eclean"
977            description="Removes all jsr166e build products">
1010
978      <delete dir="${build.jsr166e.dir}"/>
1012
979    </target>
980  
981  
# Line 1019 | Line 985
985    </target>
986  
987    <target name="jsr166edist-jar"
988 <          depends="jsr166eclean, jsr166e-jar">
1023 <
988 >          depends="jsr166eclean, jsr166ejar">
989      <copy file="${jsr166e.jar}" todir="${dist.dir}"/>
990 +  </target>
991 +
992 +  <target name="jsr166edist-docs"
993 +          depends="jsr166eclean, jsr166edocs">
994 +    <mirror-dir src="${jsr166edocs.dir}" dst="${dist.jsr166edocs.dir}"/>
995 +  </target>
996 +
997  
998 + <!-- Find buglets that can be detected by static build tools -->
999 +
1000 +  <target name="lint">
1001 +    <antcall target="dists">
1002 +      <param name="build.javadoc.access" value="private"/>
1003 +    </antcall>
1004    </target>
1005  
1006 +
1007   </project>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines