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.263 by jsr166, Tue Jan 23 06:09:53 2018 UTC vs.
Revision 1.299 by jsr166, Fri Jun 14 20:10:53 2019 UTC

# Line 1 | Line 1
1   <project name="jsr166" default="usage"
2 <  xmlns:if="ant:if" xmlns:unless="ant:unless"
2 >  xmlns:if="ant:if"
3 >  xmlns:unless="ant:unless"
4    xmlns:ivy="antlib:org.apache.ivy.ant">
5  
6    <description>
# Line 22 | Line 23
23    $HOME/jdk/jdk9
24    $HOME/jdk/jdk10
25    $HOME/jdk/jdk11
26 +  $HOME/jdk/jdk12
27 +  $HOME/jdk/jdk13
28 +  $HOME/jdk/jdk14
29    where each of the above is a JDK or a symlink to same, and
30    $HOME/jdk/src/jdk8
31    $HOME/jdk/src/jdk9
32    $HOME/jdk/src/jdk10
33    $HOME/jdk/src/jdk11
34 +  $HOME/jdk/src/jdk12
35 +  $HOME/jdk/src/jdk13
36 +  $HOME/jdk/src/jdk14
37    where each of the above is a complete JDK source tree
38    (e.g. mercurial forest) or a symlink to same.
39  
40    Alternatively, define ant variables thus:
41    ant -Djdk$N.home=... -Djdk$N.src.home=...
42 <  for $N in 8 9 10 ...
42 >  for $N in 8 .. 14 ...
43  
44    As of 2016-03, the sources in src/main are for jdk9+ only.
45   ------------------------------------------------------------------------------
# Line 52 | Line 59
59  
60  
61    <!-- Compilation options -->
55  <property name="build.sourcelevel"    value="6"/>
62    <property name="build.debug"          value="true"/>
63    <property name="build.debuglevel"     value="source,lines,vars"/>
64    <property name="build.deprecation"    value="false"/>
# Line 103 | Line 109
109      <property name="jdk@{v}.src.dir" location="${jdk@{v}.src.home}/jdk/src/share/classes"
110        unless:set="have.java.base"/>
111      <local name="modules"/>
112 <    <available property="modules" file="${jdk@{v}.home}/jmods" type="dir"/>
112 >    <available property="modules" file="${jdk@{v}.home}/lib/modules" type="file"/>
113      <local name="boot.jar.dir"/>
114      <property name="boot.jar.dir"   location="${jdk@{v}.home}/jre/lib" unless:set="modules"/>
115      <path id="bootclasspath@{v}" unless:set="modules">
# Line 135 | Line 141
141    <defjdklocations v="9"/>
142    <defjdklocations v="10"/>
143    <defjdklocations v="11"/>
144 +  <defjdklocations v="12"/>
145 +  <defjdklocations v="13"/>
146 +  <defjdklocations v="14"/>
147  
148    <!-- Source locations -->
149    <property name="src.dir"              location="${basedir}/src/main"/>
# Line 146 | Line 155
155    <property name="jtreg9.src.dir"       location="${test.src.dir}/jtreg"/>
156    <property name="jtreg10.src.dir"      location="${test.src.dir}/jtreg"/>
157    <property name="jtreg11.src.dir"      location="${test.src.dir}/jtreg"/>
158 +  <property name="jtreg12.src.dir"      location="${test.src.dir}/jtreg"/>
159 +  <property name="jtreg13.src.dir"      location="${test.src.dir}/jtreg"/>
160 +  <property name="jtreg14.src.dir"      location="${test.src.dir}/jtreg"/>
161    <property name="jtreg.src.dir"        location="${jtreg9.src.dir}"/>
162    <property name="lib.dir"              location="${basedir}/lib"/>
163    <property name="dist.dir"             location="${basedir}/dist"/>
# Line 191 | Line 203
203    <property name="java7.docroot.url"  value="https://docs.oracle.com/javase/7/docs"/>
204    <property name="java8.docroot.url"  value="https://docs.oracle.com/javase/8/docs"/>
205    <property name="java9.docroot.url"  value="https://docs.oracle.com/javase/9/docs"/>
206 <  <!-- The location of jdk9 early access docs (RIP) -->
206 >  <property name="java10.docroot.url" value="https://docs.oracle.com/javase/10/docs"/>
207 >  <property name="java11.docroot.url" value="https://docs.oracle.com/en/java/javase/11/docs"/>
208 >  <property name="java12.docroot.url" value="https://docs.oracle.com/en/java/javase/12/docs"/>
209 >  <!-- The location of jdk early access docs (RIP) -->
210    <!-- <property name="java9.docroot.url" value="http://download.java.net/java/jdk9/docs"/> -->
211 <  <!-- Default jdk doc location (latest stable release seems best) -->
212 <  <property name="java10.docroot.url" value="http://download.java.net/java/jdk10/docs"/>
213 <  <property name="java11.docroot.url" value="http://download.java.net/java/jdk11/docs"/>
214 <  <property name="java.docroot.url"   value="${java9.docroot.url}"/>
211 >  <!-- <property name="java10.docroot.url" value="http://download.java.net/java/jdk10/docs"/> -->
212 >  <!-- <property name="java11.docroot.url" value="http://download.java.net/java/jdk11/docs"/> -->
213 > <!--   <property name="java12.docroot.url" value="https://download.java.net/java/jdk12/docs"/> -->
214 >  <property name="java13.docroot.url" value="https://download.java.net/java/early_access/jdk13/docs"/>
215 >  <property name="java14.docroot.url" value="https://download.java.net/java/early_access/jdk14/docs"/>
216 >  <!-- Default jdk doc location (latest stable LTS release seems best) -->
217 >  <property name="java.docroot.url"   value="${java11.docroot.url}"/>
218  
219    <!-- Canonical location of jdk API docs, to use with javadoc link attribute -->
220    <property name="java5.api.url"      value="${java5.docroot.url}/api/"/>
# Line 206 | Line 224
224    <property name="java9.api.url"      value="${java9.docroot.url}/api/"/>
225    <property name="java10.api.url"     value="${java10.docroot.url}/api/"/>
226    <property name="java11.api.url"     value="${java11.docroot.url}/api/"/>
227 +  <property name="java12.api.url"     value="${java12.docroot.url}/api/"/>
228 +  <property name="java13.api.url"     value="${java13.docroot.url}/api/"/>
229 +  <property name="java14.api.url"     value="${java14.docroot.url}/api/"/>
230    <property name="java.api.url"       value="${java.docroot.url}/api/"/>
231  
232    <!-- Define the "jtreg" task -->
# Line 238 | Line 259
259  
260      <local name="modules"/>
261      <condition property="modules">
262 <      <available file="${jdk@{compile-target}.home}/jmods" type="dir"/>
262 >      <available file="${jdk@{compile-target}.home}/lib/modules" type="file"/>
263      </condition>
264  
265      <local name="use-doclint"/>
# Line 305 | Line 326
326    </macrodef>
327  
328    <!-- Define jtreg test sets for different jdk versions -->
329 <  <fileset dir="${jtreg11.src.dir}">
330 <    <patternset id="jdk11.jtreg.tests">
331 <      <include name="**/*.java"/>
332 <    </patternset>
333 <  </fileset>
334 <
335 <  <fileset dir="${jtreg10.src.dir}">
336 <    <patternset id="jdk10.jtreg.tests">
337 <      <include name="**/*.java"/>
338 <    </patternset>
339 <  </fileset>
340 <
341 <  <fileset dir="${jtreg9.src.dir}">
321 <    <patternset id="jdk9.jtreg.tests">
322 <      <include name="**/*.java"/>
323 <    </patternset>
324 <  </fileset>
325 <
326 <  <fileset dir="${jtreg8.src.dir}">
327 <    <patternset id="jdk8.jtreg.tests">
328 <      <include name="**/*.java"/>
329 <    </patternset>
330 <  </fileset>
329 >  <!-- ant -Djtreg.test.pattern="**/ConcurrentHashMap/" -->
330 >  <!-- ant -Djtreg.test.pattern="**/ToArray.java" -->
331 >  <property name="jtreg.test.pattern" value="**/*.java"/>
332 >  <macrodef name="defjtregtests">
333 >    <attribute name="v"/>
334 >    <sequential>
335 >      <fileset dir="${jtreg@{v}.src.dir}">
336 >        <patternset id="jdk@{v}.jtreg.tests">
337 >          <include name="${jtreg.test.pattern}"/>
338 >        </patternset>
339 >      </fileset>
340 >    </sequential>
341 >  </macrodef>
342  
343 <  <fileset dir="${jtreg7.src.dir}">
344 <    <patternset id="jdk7.jtreg.tests">
345 <      <include name="**/*.java"/>
346 <    </patternset>
347 <  </fileset>
343 >  <defjtregtests v="14"/>
344 >  <defjtregtests v="13"/>
345 >  <defjtregtests v="12"/>
346 >  <defjtregtests v="11"/>
347 >  <defjtregtests v="10"/>
348 >  <defjtregtests v="9"/>
349 >  <defjtregtests v="8"/>
350 >  <defjtregtests v="7"/>
351  
352    <!-- ant -Djtreg.flags=-timeoutFactor:4 -->
353    <property name="jtreg.flags" value=""/>
354  
355    <macrodef name="run-jtreg-tests">
356 <    <!-- ant -Djtreg9.src.dir=src/test/jtreg/util/concurrent/CompletableFuture jtreg -->
356 >    <!-- ant -Djtreg11.src.dir=src/test/jtreg/util/concurrent/CompletableFuture jtreg -->
357      <attribute name="target"/>
358      <attribute name="workdir"/>
359      <attribute name="classes"/>
# Line 354 | Line 368
368  
369      <local name="modules"/>
370      <condition property="modules">
371 <      <available file="${jdk@{target}.home}/jmods" type="dir"/>
371 >      <available file="${jdk@{target}.home}/lib/modules" type="file"/>
372      </condition>
373  
374      <delete dir="@{workdir}/JTwork"   quiet="true"/>
# Line 389 | Line 403
403  
404    <!-- Main targets -->
405  
406 <  <property name="build.main.java.version" value="9"/>
407 <  <!-- Workaround "no nested properties in ant" -->
408 <  <macrodef name="define-build-main-properties">
409 <    <attribute name="v"/>
410 <    <sequential>
411 <      <property name="build.main.java"    value="${java@{v}}"/>
412 <      <property name="build.main.javac"   value="${javac@{v}}"/>
413 <      <property name="build.main.javadoc" value="${javadoc@{v}}"/>
414 <    </sequential>
415 <  </macrodef>
416 <  <define-build-main-properties v="${build.main.java.version}"/>
406 >  <!-- Default values: may seem strange ... -->
407 >  <!-- At runtime, target latest LTS, i.e. jdk11 -->
408 >  <!-- But at build time, target jdk9, for maximal binary portability -->
409 >  <!-- Use javadoc12 (but -link to jdk11 api docs!), to get:
410 >    o override-methods=summary
411 >    o {@systemProperty ...}
412 >    o 8211194: issues linking to external documentation (was: missing package-list for JDK10 / JDK11 documentation)
413 >    o 8202628: javadoc generates bad links in TestModules.java
414 >    -->
415 >  <property name="java.runtime.target" value="11"/>
416 >  <property name="build.main.java" value="${java11}"/>
417 >  <property name="build.main.javac" value="${javac9}"/>
418 >  <property name="build.main.javadoc" value="${javadoc12}"/>
419 >  <property name="build.main.javadoc.source" value="${java.runtime.target}"/>
420  
421    <target name="dists"
422            depends="dist, 4jdk8dist"
423            description="Builds all public jars and docs"/>
424 <          <!--
408 <              depends="dist, 4jdk8dist, 4jdk7dist, jsr166edist, jsr166ydist, extra166ydist, jsr166xdist"
409 <          -->
424 >          <!-- no longer supported: 4jdk7dist, jsr166edist, jsr166ydist, extra166ydist, jsr166xdist -->
425  
426    <target name="compile"
427            depends="configure-compiler"
# Line 433 | Line 448
448        <compilerarg value="--patch-module=java.base=${src.dir}"/>
449        <compilerarg value="-Xprefer:source"/>
450        <compilerarg value="-XDignore.symbol.file=true"/>
451 <      <compilerarg value="-Xlint:all"/>
451 >      <compilerarg value="-Xlint:all,-removal"/>
452        <compilerarg line="--doclint-format html5"/>
453        <compilerarg value="-Xdoclint:all/protected,reference/private"/>
454 +      <compilerarg value="-Xdoclint/package:java.util.*"/>
455        <compilerarg value="-Werror"/>
456        <compilerarg line="-Xmaxerrs 1000 -Xmaxwarns 1000"/>
457        <compilerarg line="${build.args}"/>
# Line 475 | Line 491
491   <!-- TODO: <arg line="- -module-source-path ${jdk9.home}/src.zip"/> -->
492      <javadoc destdir="${docs.dir}"
493               packagenames="none"
494 <             link="${java9.api.url}"
494 >             link="${java.api.url}"
495               overview="${src.dir}/intro.html"
496               access="${build.javadoc.access}"
497               sourcepath="${src.dir}"
498               classpath=""
499 <             source="9"
499 >             source="${build.main.javadoc.source}"
500               executable="${build.main.javadoc}">
501 + <!-- TODO: JDK-8214571 failonerror = "true" -->
502        <fileset dir="${src.dir}" defaultexcludes="yes">
503          <include name="**/*.java"/>
504        </fileset>
505 <      <arg line="-Xdocrootparent ${java9.docroot.url}"/>
505 >      <arg line="-Xdocrootparent ${java.docroot.url}"/>
506        <arg line="-Xmaxerrs 1000 -Xmaxwarns 1000"/>
507        <arg value="-XDignore.symbol.file=true"/>
508        <arg value="-html5"/>
509        <arg value="--patch-module=java.base=${src.dir}"/>
510 <      <arg value="-tag"/>
511 <      <arg value="${javadoc.jls.option}"/>
512 < <!-- @apiNote currently unused -->
513 < <!--       <arg value="-tag"/> -->
514 < <!--       <arg value="apiNote:a:API Note:"/> -->
515 <      <arg value="-tag"/>
516 <      <arg value="implSpec:a:Implementation Requirements:"/>
517 <      <arg value="-tag"/>
501 <      <arg value="implNote:a:Implementation Note:"/>
510 > <!-- old school frames via docs/index.html?overview-summary.html -->
511 > <!-- TODO: - -frames no longer a supported option in jdk13+ -->
512 >      <arg value="--frames"/>
513 >      <arg value="--override-methods=summary"/>
514 >      <arg value="-tag"/> <arg value="${javadoc.jls.option}"/>
515 >      <arg value="-tag"/> <arg value="implSpec:a:Implementation Requirements:"/>
516 >      <arg value="-tag"/> <arg value="implNote:a:Implementation Note:"/>
517 >      <arg value="-tag"/> <arg value="apiNote:a:API Note:"/>
518   <!-- tags added in jdk9: currently unused -->
519 < <!--       <arg value="-tag"/> -->
520 < <!--       <arg value="revised:X"/> -->
505 < <!--       <arg value="-tag"/> -->
506 < <!--       <arg value="spec:X"/> -->
519 > <!--  <arg value="-tag"/> <arg value="revised:X"/> -->
520 > <!--  <arg value="-tag"/> <arg value="spec:X"/> -->
521      </javadoc>
522    </target>
523  
# Line 513 | Line 527
527            description="Puts all distributable products in single hierarchy"/>
528  
529  
516  <target name="release"
517          depends="dist"
518          description="Puts entire CVS tree, plus distribution productions, in a jar">
519
520    <property name="release.jar" value="dist/jsr166-${version}-dist.jar"/>
521
522    <jar basedir="${basedir}" destfile="${release.jar}">
523      <!-- <exclude name="build/**"/> -->
524      <exclude name="${release.jar}"/>
525      <exclude name="user.properties"/>
526      <exclude name="etc/notes/**"/>
527      <exclude name="src/emulation/**"/>
528      <exclude name="**/SyntaxTest.java"/>
529      <exclude name="**/SuperfluousAbstract.java"/>
530      <manifest>
531        <attribute name="Built-By" value="${user.name}"/>
532        <attribute name="Implementation-Vendor" value="JCP JSR-166 Expert Group."/>
533      </manifest>
534    </jar>
535  </target>
536
537
530    <target name="clean"
531            description="Removes all build products">
532      <delete dir="${build.dir}"/>
# Line 563 | Line 555
555            description="Runs tck tests for src/main directly">
556  
557      <run-tck-tests
558 <      target="${build.main.java.version}"
558 >      target="${java.runtime.target}"
559        workdir="${build.dir}"
560        classes="${product.jar}">
561        <javac-elements>
# Line 597 | Line 589
589            depends="jar"
590            description="Runs jtreg tests for src/main using the jtreg ant task">
591      <run-jtreg-tests
592 <       target="${build.main.java.version}"
592 >       target="${java.runtime.target}"
593         workdir="${build.dir}"
594         classes="${product.jar}"/>
595    </target>
# Line 606 | Line 598
598            depends="tck, tck-parallelism-1, tck-parallelism-0, jtreg"
599            description="Runs tck and jtreg tests for src/main"/>
600  
601 < <!--   <target name="jtreg8" description="Runs jtreg tests with jdk8"> -->
601 >  <target name="test-version-permutations"
602 >          depends="test9, test10, test11, test12, test13, test14, test9-11, test9-12, test9-13, test9-14, clean, test, docs">
603 >  </target>
604  
605 < <!--     <antcall target="jtreg"> -->
606 < <!--       <param name="build.main.java.version" value="8"/> -->
607 < <!--       <param name="build.main.javac" value="${javac8}"/> -->
608 < <!--     </antcall> -->
605 >  <target name="test9">
606 >    <antcall target="clean"/>
607 >    <antcall>
608 >      <param name="java.runtime.target" value="9"/>
609 >      <param name="build.main.javac" value="${javac9}"/>
610 >      <param name="build.main.javadoc" value="${javadoc12}"/>
611 >      <param name="build.main.javadoc.source" value="9"/>
612 >      <target name="test"/>
613 >      <target name="docs"/>
614 >    </antcall>
615 >  </target>
616  
617 < <!--   </target> -->
617 >  <target name="test10">
618 >    <antcall target="clean"/>
619 >    <antcall>
620 >      <param name="java.runtime.target" value="10"/>
621 >      <param name="build.main.javac" value="${javac10}"/>
622 >      <param name="build.main.javadoc" value="${javadoc12}"/>
623 >      <param name="build.main.javadoc.source" value="10"/>
624 >      <target name="test"/>
625 >      <target name="docs"/>
626 >    </antcall>
627 >  </target>
628  
629 <  <target name="test91011"
630 <          description="Runs tck and jtreg tests for src/main for multiple java versions">
629 >  <target name="test11">
630 >    <antcall target="clean"/>
631 >    <antcall>
632 >      <param name="java.runtime.target" value="11"/>
633 >      <param name="build.main.javac" value="${javac11}"/>
634 >      <param name="build.main.javadoc" value="${javadoc12}"/>
635 >      <param name="build.main.javadoc.source" value="11"/>
636 >      <target name="test"/>
637 >      <target name="docs"/>
638 >    </antcall>
639 >  </target>
640  
641 +  <target name="test12">
642      <antcall target="clean"/>
643 <    <antcall target="test">
644 <      <param name="build.main.java.version" value="9"/>
643 >    <antcall>
644 >      <param name="java.runtime.target" value="12"/>
645 >      <param name="build.main.javac" value="${javac12}"/>
646 >      <param name="build.main.javadoc" value="${javadoc12}"/>
647 >      <param name="build.main.javadoc.source" value="12"/>
648 >      <target name="test"/>
649 >      <target name="docs"/>
650      </antcall>
651 +  </target>
652  
653 +  <target name="test13">
654      <antcall target="clean"/>
655 <    <antcall target="test">
656 <      <param name="build.main.java.version" value="10"/>
655 >    <antcall>
656 >      <param name="java.runtime.target" value="13"/>
657 >      <param name="build.main.javac" value="${javac13}"/>
658 >      <param name="build.main.javadoc" value="${javadoc13}"/>
659 >      <param name="build.main.javadoc.source" value="13"/>
660 >      <target name="test"/>
661 >      <target name="docs"/>
662      </antcall>
663 +  </target>
664  
665 +  <target name="test14">
666      <antcall target="clean"/>
667 <    <antcall target="test">
668 <      <param name="build.main.java.version" value="11"/>
667 >    <antcall>
668 >      <param name="java.runtime.target" value="14"/>
669 >      <param name="build.main.javac" value="${javac14}"/>
670 >      <param name="build.main.javadoc" value="${javadoc14}"/>
671 >      <param name="build.main.javadoc.source" value="14"/>
672 >      <target name="test"/>
673 >      <target name="docs"/>
674      </antcall>
675 +  </target>
676  
677 <    <!-- Clean up to avoid obscure wrong class file version bugs -->
677 >  <target name="test9-11">
678      <antcall target="clean"/>
679 +    <antcall>
680 +      <param name="java.runtime.target" value="11"/>
681 +      <param name="build.main.javac" value="${javac9}"/>
682 +      <param name="build.main.javadoc" value="${javadoc12}"/>
683 +      <param name="build.main.javadoc.source" value="9"/>
684 +      <target name="test"/>
685 +      <target name="docs"/>
686 +    </antcall>
687 +  </target>
688  
689 +  <target name="test9-12">
690 +    <antcall target="clean"/>
691 +    <antcall>
692 +      <param name="java.runtime.target" value="12"/>
693 +      <param name="build.main.javac" value="${javac9}"/>
694 +      <param name="build.main.javadoc" value="${javadoc12}"/>
695 +      <param name="build.main.javadoc.source" value="9"/>
696 +      <target name="test"/>
697 +      <target name="docs"/>
698 +    </antcall>
699    </target>
700  
701 +  <target name="test9-13">
702 +    <antcall target="clean"/>
703 +    <antcall>
704 +      <param name="java.runtime.target" value="13"/>
705 +      <param name="build.main.javac" value="${javac9}"/>
706 +      <param name="build.main.javadoc" value="${javadoc13}"/>
707 +      <param name="build.main.javadoc.source" value="9"/>
708 +      <target name="test"/>
709 +      <target name="docs"/>
710 +    </antcall>
711 +  </target>
712 +
713 +  <target name="test9-14">
714 +    <antcall target="clean"/>
715 +    <antcall>
716 +      <param name="java.runtime.target" value="14"/>
717 +      <param name="build.main.javac" value="${javac9}"/>
718 +      <param name="build.main.javadoc" value="${javadoc14}"/>
719 +      <param name="build.main.javadoc.source" value="9"/>
720 +      <target name="test"/>
721 +      <target name="docs"/>
722 +    </antcall>
723 +  </target>
724  
725  
726    <target name="configure-compiler">
# Line 660 | Line 743
743    </target>
744  
745  
663
664  <!-- Various demos and test programs -->
665
666
667  <!-- description="Benchmark from Doug Lea's AQS paper" -->
668  <target name="loops" depends="configure-compiler">
669
670    <mkdir dir="${build.loops.dir}"/>
671
672    <javac srcdir="${loops.src.dir}"
673          destdir="${build.loops.dir}"
674            debug="${build.debug}"
675       debuglevel="${build.debuglevel}"
676      deprecation="${build.deprecation}"
677           source="${build.sourcelevel}"
678           target="${build.sourcelevel}"
679         encoding="ASCII"
680             fork="true">
681
682      <compilerarg line="${build.args}"/>
683      <classpath refid="loops.classpath"/>
684      <compilerarg value="-XDignore.symbol.file=true"/>
685
686    </javac>
687
688    <java classname="ALoops" fork="true">
689      <classpath refid="loops.classpath"/>
690    </java>
691  </target>
692
693
746    <target name="compile-test-loops" depends="jar"
747            description="Compiles all the perf tests in src/test/loops">
748  
# Line 845 | Line 897
897        </fileset>
898        <arg line="-Xdocrootparent ${java8.docroot.url}"/>
899        <arg value="-XDignore.symbol.file=true"/>
900 <      <arg value="-tag"/>
901 <      <arg value="${javadoc.jls.option}"/>
902 < <!-- @apiNote currently unused -->
903 < <!--       <arg value="-tag"/> -->
904 < <!--       <arg value="apiNote:a:&lt;em&gt;API Note:&lt;/em&gt;"/> -->
853 <      <arg value="-tag"/>
854 <      <arg value="implSpec:a:&lt;em&gt;Implementation Requirements:&lt;/em&gt;"/>
855 <      <arg value="-tag"/>
856 <      <arg value="implNote:a:&lt;em&gt;Implementation Note:&lt;/em&gt;"/>
900 >      <arg value="-tag"/> <arg value="${javadoc.jls.option}"/>
901 >      <arg value="-tag"/> <arg value="implSpec:a:&lt;em&gt;Implementation Requirements:&lt;/em&gt;"/>
902 >      <arg value="-tag"/> <arg value="implNote:a:&lt;em&gt;Implementation Note:&lt;/em&gt;"/>
903 > <!-- @apiNote tag currently unused -->
904 > <!--  <arg value="-tag"/> <arg value="apiNote:a:&lt;em&gt;API Note:&lt;/em&gt;"/> -->
905      </javadoc>
906    </target>
907  
# Line 1383 | Line 1431
1431  
1432   <!-- Find buglets that can be detected by static build tools -->
1433  
1434 <  <target name="lint">
1435 <    <antcall target="dists">
1436 <      <param name="build.javadoc.access" value="public"/>
1437 <    </antcall>
1438 <  </target>
1434 > <!--   <target name="lint"> -->
1435 > <!--     <antcall target="dists"> -->
1436 > <!--       <param name="build.javadoc.access" value="protected"/> -->
1437 > <!--     </antcall> -->
1438 > <!--   </target> -->
1439  
1440   <!-- Generates all doclint warnings, even for private methods (rarely useful) -->
1441 <  <target name="lint-private">
1441 >  <target name="doclint-private">
1442      <antcall target="dist">
1443        <param name="build.javadoc.access" value="private"/>
1444      </antcall>
# Line 1398 | Line 1446
1446  
1447  
1448   <!-- ==============================================================
1449 <  Experimental errorprone support - http://errorprone.info
1449 >  Experimental errorprone support
1450 >  https://errorprone.info
1451 >  https://errorprone.info/docs/installation
1452 >  https://github.com/google/error-prone/issues/1143
1453   =================================================================== -->
1454 <  <property name="errorprone.jar" location="${lib.dir}/error_prone_ant-2.2.0.jar"/>
1454 >  <path id="errorprone.processorpath.path">
1455 >    <pathelement location="${lib.dir}/error_prone_core-2.3.2-with-dependencies.jar"/>
1456 >    <pathelement location="${lib.dir}/dataflow-2.5.7.jar"/>
1457 >    <pathelement location="${lib.dir}/javacutil-2.5.7.jar"/>
1458 >    <pathelement location="${lib.dir}/jFormatString-3.0.0.jar"/>
1459 >  </path>
1460 >  <property name="errorprone.processorpath" refid="errorprone.processorpath.path" />
1461 >  <property name="errorprone.jsr166.user.flags" value=""/>
1462    <property name="errorprone.jsr166.flags"
1463              value="-Xep:HashtableContains:OFF
1464                     -Xep:JdkObsolete:OFF
1465                     -Xep:MissingOverride:OFF
1466                     -Xep:MissingFail:OFF
1467 +                   -Xep:ThreadPriorityCheck:OFF
1468                     -Xep:MixedArrayDimensions:ERROR
1469                     -Xep:RemoveUnusedImports:ERROR
1470                     -Xep:EmptyIf:ERROR
# Line 1414 | Line 1473
1473                     -Xep:LongLiteralLowerCaseSuffix:ERROR
1474                     -Xep:RedundantThrows:ERROR
1475                     -Xep:IdentityBinaryExpression:WARN
1476 <                   -Xep:MethodCanBeStatic:WARN"/>
1476 >                   -Xep:ConstructorInvokesOverridable:WARN
1477 >                   -Xep:MethodCanBeStatic:WARN
1478 >                   ${errorprone.jsr166.user.flags}"/>
1479    <!-- -Xep:WildcardImport:ERROR -->
1480    <property name="errorprone.jsr166.test.flags"
1481              value="-Xep:StringSplitter:OFF
# Line 1442 | Line 1503
1503             fork="true">
1504  
1505        <include name="**/*.java"/>
1506 <      <compilerarg line="-processorpath ${errorprone.jar}"/>
1506 >      <!-- Needed to silence -Xep:FutureReturnValueIgnored -->
1507 >      <compilerarg value="-J--illegal-access=permit"/>
1508 >      <compilerarg value="-XDcompilePolicy=simple"/>
1509 >      <compilerarg value="-processorpath"/>
1510 >      <compilerarg pathref="errorprone.processorpath.path"/>
1511        <compilerarg value="-Xplugin:ErrorProne
1512                            ${errorprone.jsr166.flags}"/>
1513        <compilerarg value="--patch-module=java.base=${src.dir}"/>
# Line 1459 | Line 1524
1524      </jar>
1525  
1526      <run-tck-tests
1527 <      target="${build.main.java.version}"
1527 >      target="${java.runtime.target}"
1528        workdir="${build.dir}"
1529        classes="${product.jar}">
1530        <javac-elements>
1531 <        <compilerarg line="-processorpath ${errorprone.jar}"/>
1531 >        <!-- Needed to silence -Xep:FutureReturnValueIgnored -->
1532 >        <compilerarg value="-J--illegal-access=permit"/>
1533 >        <compilerarg value="-XDcompilePolicy=simple"/>
1534 >        <compilerarg line="-processorpath ${errorprone.processorpath}"/>
1535          <compilerarg value="-Xplugin:ErrorProne
1536                              ${errorprone.jsr166.flags}
1537                              ${errorprone.jsr166.test.flags}"/>
# Line 1479 | Line 1547
1547            description="Run errorprone over jtreg tests (experimental)">
1548  
1549      <run-jtreg-tests
1550 <       target="${build.main.java.version}"
1550 >       target="${java.runtime.target}"
1551         workdir="${build.dir}"
1552         classes="${product.jar}"
1553         verbose="all">
1554        <jtreg-elements>
1555 <        <arg value="-javacoption:-XDcompilePolicy=byfile"/>
1555 >        <arg value="-javacoption:-XDcompilePolicy=simple"/>
1556          <arg value="-javacoption:-processorpath"/>
1557 <        <arg value="-javacoption:${errorprone.jar}"/>
1557 >        <arg value="-javacoption:${errorprone.processorpath}"/>
1558          <arg value="-javacoption:-Xplugin:ErrorProne
1559                              ${errorprone.jsr166.flags}
1560                              ${errorprone.jsr166.test.flags}
1561 +                            -Xep:MultipleTopLevelClasses:WARN
1562                              -Xep:NonAtomicVolatileUpdate:OFF"/>
1563        </jtreg-elements>
1564      </run-jtreg-tests>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines