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.57 by tim, Mon Sep 15 14:07:36 2003 UTC vs.
Revision 1.127 by jsr166, Wed Jan 23 06:57:08 2013 UTC

# Line 8 | Line 8
8  
9    User-specific settings are read from user.properties.
10    See user.properties.sample for an explanation of some useful settings.
11 +
12 +  The repository contains all dependencies except for ant and the JDK
13 +  itself.  Because the JDK version matters and because different
14 +  targets require different JDKs, we assume that users have created a
15 +  hierarchy containing:
16 +  $HOME/jdk/jdk6
17 +  $HOME/jdk/jdk7
18 +  $HOME/jdk/jdk8
19 +  where each of the above is a JDK or a symlink to same, and
20 +  $HOME/jdk/src/jdk6
21 +  $HOME/jdk/src/jdk7
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   ------------------------------------------------------------------------------
26    </description>
27  
# Line 21 | Line 35
35  
36  
37    <!-- Compilation options -->
38 <  <property name="build.sourcelevel"    value="1.5"/>
25 <  <property name="build.docsourcelevel" value="1.4"/>
38 >  <property name="build.sourcelevel"    value="6"/>
39    <property name="build.debug"          value="true"/>
40    <property name="build.debuglevel"     value="source,lines,vars"/>
41    <property name="build.deprecation"    value="false"/>
42  
43    <!-- Build locations -->
44 <  <property name="build.dir"            location="build"/>
45 <  <property name="build.classes.dir"    location="${build.dir}/classes"/>
46 <  <property name="build.testcases.dir"  location="${build.dir}/testcases"/>
47 <  <property name="build.lib.dir"        location="${build.dir}/lib"/>
48 <  <property name="build.ant.dir"        location="${build.dir}/ant"/>
49 <  <property name="build.javadocs.dir"   location="${build.dir}/javadocs"/>
50 <  <property name="build.sinjdocs.dir"   location="${build.dir}/sinjdocs"/>
51 <  <property name="build.stripped.dir"   location="${build.dir}/stripped"/>
52 <  <property name="build.reports.dir"    location="${build.dir}/reports"/>
53 <  <property name="build.doccheck.dir"   location="${build.dir}/doccheck"/>
54 <  <property name="build.filter.src.dir" location="${build.dir}/filtersrc"/>
55 <  <property name="build.filter.doccheck.dir" location="${build.dir}/filterdocchk"/>
44 >  <property name="build.dir"                   location="build"/>
45 >  <property name="build.classes.dir"           location="${build.dir}/classes"/>
46 >  <property name="build.testcases.dir"         location="${build.dir}/testcases"/>
47 >  <property name="build.loops.dir"             location="${build.dir}/loops"/>
48 >  <property name="build.reports.dir"           location="${build.dir}/reports"/>
49 >
50 >  <property name="build.4jdk7.dir"             location="${build.dir}/jsr166-4jdk7"/>
51 >  <property name="build.4jdk7.classes.dir"     location="${build.4jdk7.dir}/classes"/>
52 >  <property name="build.4jdk7.tck.classes.dir" location="${build.4jdk7.dir}/tck-classes"/>
53 >  <property name="build.4jdk7.docs.dir"        location="${build.4jdk7.dir}/docs"/>
54 >
55 >  <property name="build.jsr166x.dir"           location="${build.dir}/jsr166x"/>
56 >  <property name="build.jsr166y.dir"           location="${build.dir}/jsr166y"/>
57 >  <property name="build.jsr166e.dir"           location="${build.dir}/jsr166e"/>
58 >  <property name="build.extra166y.dir"         location="${build.dir}/extra166y"/>
59 >
60 >  <property name="build.jsr166x.classes.dir"   location="${build.jsr166x.dir}/classes"/>
61 >  <property name="build.jsr166y.classes.dir"   location="${build.jsr166y.dir}/classes"/>
62 >  <property name="build.jsr166e.classes.dir"   location="${build.jsr166e.dir}/classes"/>
63 >  <property name="build.extra166y.classes.dir" location="${build.extra166y.dir}/classes"/>
64 >
65 >  <!-- JDK locations -->
66 >  <property name="jdks.home"  location="${user.home}/jdk"/>
67 >
68 >  <macrodef name="defjdklocations">
69 >    <attribute name="v"/>
70 >    <sequential>
71 >    <property name="jdk@{v}.home"   location="${jdks.home}/jdk@{v}"/>
72 >    <property name="java@{v}"       location="${jdk@{v}.home}/bin/java"/>
73 >    <property name="javac@{v}"      location="${jdk@{v}.home}/bin/javac"/>
74 >    <property name="javadoc@{v}"    location="${jdk@{v}.home}/bin/javadoc"/>
75 >    <property name="jdk@{v}src.dir" location="${jdks.home}/src/jdk@{v}/jdk/src/share/classes"/>
76 >    <local name="boot.jar.dir"/>
77 >    <property name="boot.jar.dir"   location="${jdk@{v}.home}/jre/lib"/>
78 >    <path id="bootclasspath@{v}">
79 >      <pathelement path="${boot.jar.dir}/resources.jar"/>
80 >      <pathelement path="${boot.jar.dir}/rt.jar"/>
81 >      <pathelement path="${boot.jar.dir}/jsse.jar"/>
82 >      <pathelement path="${boot.jar.dir}/jce.jar"/>
83 >      <pathelement path="${boot.jar.dir}/charsets.jar"/>
84 >    </path>
85 >    <property name="bootclasspath@{v}" value="${toString:bootclasspath@{v}}"/>
86 >    </sequential>
87 >  </macrodef>
88 >
89 >  <macrodef name="mirror-dir">
90 >    <attribute name="src"/>
91 >    <attribute name="dst"/>
92 >    <sequential>
93 >    <delete dir="@{dst}"/>
94 >    <mkdir dir="@{dst}"/>
95 >    <copy todir="@{dst}" preservelastmodified="true">
96 >      <fileset dir="@{src}"/>
97 >    </copy>
98 >    </sequential>
99 >  </macrodef>
100 >
101 >  <defjdklocations v="6"/>
102 >  <defjdklocations v="7"/>
103 >  <defjdklocations v="8"/>
104  
105    <!-- Source locations -->
106    <property name="src.dir"              location="${basedir}/src/main"/>
107    <property name="test.src.dir"         location="${basedir}/src/test"/>
108 <  <property name="ant.src.dir"          location="${basedir}/etc/ant"/>
109 <  <property name="stylesheet.dir"       location="${basedir}/etc/xsl"/>
108 >  <property name="loops.src.dir"        location="${basedir}/src/loops"/>
109 >  <property name="tck.src.dir"          location="${test.src.dir}/tck"/>
110 >  <property name="jtreg.src.dir"        location="${test.src.dir}/jtreg"/>
111    <property name="lib.dir"              location="${basedir}/lib"/>
112    <property name="dist.dir"             location="${basedir}/dist"/>
113 <
114 <  <!-- Distribution locations -->
115 <  <property name="dist.javadocs.dir"    location="${dist.dir}/docs"/>
113 >  <property name="topsrc.dir"           location="${basedir}/src"/>
114 >  <property name="4jdk7src.dir"         location="${topsrc.dir}/jdk7"/>
115 >  <property name="jsr166xsrc.dir"       location="${topsrc.dir}/jsr166x"/>
116 >  <property name="jsr166ysrc.dir"       location="${topsrc.dir}/jsr166y"/>
117 >  <property name="jsr166esrc.dir"       location="${topsrc.dir}/jsr166e"/>
118 >  <property name="extra166ysrc.dir"     location="${topsrc.dir}/extra166y"/>
119 >
120 >  <!-- Javadoc locations -->
121 >  <property name="docs.dir"          location="${build.dir}/docs"/>
122 >  <property name="4jdk7docs.dir"     location="${build.4jdk7.dir}/docs"/>
123 >  <property name="jsr166xdocs.dir"   location="${build.jsr166x.dir}/docs"/>
124 >  <property name="jsr166ydocs.dir"   location="${build.jsr166y.dir}/docs"/>
125 >  <property name="jsr166edocs.dir"   location="${build.jsr166e.dir}/docs"/>
126 >  <property name="extra166ydocs.dir" location="${build.extra166y.dir}/docs"/>
127 >
128 >  <property name="dist.docs.dir"          location="${dist.dir}/docs"/>
129 >  <property name="dist.4jdk7docs.dir"     location="${dist.dir}/jsr166-4jdk7docs"/>
130 >  <property name="dist.jsr166xdocs.dir"   location="${dist.dir}/jsr166xdocs"/>
131 >  <property name="dist.jsr166ydocs.dir"   location="${dist.dir}/jsr166ydocs"/>
132 >  <property name="dist.jsr166edocs.dir"   location="${dist.dir}/jsr166edocs"/>
133 >  <property name="dist.extra166ydocs.dir" location="${dist.dir}/extra166ydocs"/>
134  
135    <!-- Jar locations -->
136 <  <property name="product.jar"          location="${build.lib.dir}/jsr166.jar"/>
137 <  <property name="junit.jar"            location="${lib.dir}/junit.jar"/>
138 <  <property name="rt.jar"               location="${java.home}/lib/rt.jar"/>
139 <  <property name="sinjdoc.jar"          location="${lib.dir}/sinjdoc.jar"/>
136 >  <property name="product.jar"      location="${build.dir}/jsr166.jar"/>
137 >  <property name="4jdk7product.jar" location="${build.4jdk7.dir}/jsr166-4jdk7.jar"/>
138 >  <property name="jsr166x.jar"      location="${build.jsr166x.dir}/jsr166x.jar"/>
139 >  <property name="jsr166y.jar"      location="${build.jsr166y.dir}/jsr166y.jar"/>
140 >  <property name="jsr166e.jar"      location="${build.jsr166e.dir}/jsr166e.jar"/>
141 >  <property name="extra166y.jar"    location="${build.extra166y.dir}/extra166y.jar"/>
142 >  <property name="junit.jar"        location="${lib.dir}/junit.jar"/>
143 >
144 >  <!-- Canonical location of jdk API docs, to use with javadoc link attribute -->
145 >  <property name="jdkapi5docs.url"      value="http://docs.oracle.com/javase/1.5.0/docs/api/"/>
146 >  <property name="jdkapi6docs.url"      value="http://docs.oracle.com/javase/6/docs/api/"/>
147 >  <property name="jdkapi7docs.url"      value="http://docs.oracle.com/javase/7/docs/api/"/>
148 >
149 >  <property name="jdkapi8docs.url"      value="http://download.java.net/jdk8/docs/api/"/>
150 >  <!-- The below does not yet exist as of 2013-01 -->
151 >  <!-- <property name="jdkapi8docs.url" value="http://docs.oracle.com/javase/8/docs/api/"/> -->
152 >
153 >  <!-- Default jdk api doc location (latest stable release seems best) -->
154 >  <property name="jdkapidocs.url"       value="${jdkapi7docs.url}"/>
155 >
156 >  <!-- Define the "jtreg" task -->
157 >  <!-- See the docs in "jtreg -onlineHelp" -->
158 >  <taskdef name="jtreg" classname="com.sun.javatest.regtest.Main$$Ant"
159 >           classpath="${lib.dir}/jtreg.jar" />
160 >
161 >  <!-- Test classpath -->
162 >  <path id="test.classpath">
163 >    <pathelement location="${build.testcases.dir}"/>
164 >    <pathelement location="${junit.jar}"/>
165 >  </path>
166 >
167 >  <macrodef name="run-tck-tests">
168 >    <attribute name="tck.src.dir" default="${tck.src.dir}"/>
169 >    <attribute name="source" default="6"/>
170 >    <attribute name="target"/>
171 >    <attribute name="workdir"/>
172 >    <attribute name="classes"/>
173 >    <attribute name="jvmflags" default=""/>
174 >    <sequential>
175 >
176 >    <mkdir dir="@{workdir}/tck-classes"/>
177 >
178 >    <javac srcdir="@{tck.src.dir}"
179 >           destdir="@{workdir}/tck-classes"
180 >           debug="${build.debug}"
181 >           debuglevel="${build.debuglevel}"
182 >           deprecation="${build.deprecation}"
183 >           source="@{source}"
184 >           classpath="${junit.jar}"
185 >           bootclasspath="@{classes}:${bootclasspath@{source}}"
186 >           includeAntRuntime="false"
187 >           includeJavaRuntime="false"
188 >           executable="${javac@{target}}"
189 >           fork="true">
190 >
191 >      <include name="*.java"/>
192 >      <compilerarg value="-XDignore.symbol.file=true"/>
193 >      <compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial,-deprecation"/>
194 >      <compilerarg line="${build.args}"/>
195  
196 +    </javac>
197  
198 <  <!-- Files excluded from dist-docs -->
199 <  <patternset id="docs.exclusion">
200 <    <exclude name="java/util/Random.*"/>
201 <    <exclude name="sun/misc/Unsafe.*"/>
202 <  </patternset>
198 >    <java classname="JSR166TestCase"
199 >          failonerror="true"
200 >          jvm="${java@{target}}"
201 >          fork="true">
202 >        <jvmarg value="-Xbootclasspath/p:@{classes}"/>
203 >        <jvmarg line="@{jvmflags}"/>
204 >        <classpath>
205 >          <pathelement location="${junit.jar}"/>
206 >          <pathelement location="@{workdir}/tck-classes"/>
207 >        </classpath>
208 >    </java>
209  
210 +    </sequential>
211 +  </macrodef>
212  
213 +  <!-- ALoops classpath -->
214 +  <path id="loops.classpath">
215 +    <pathelement location="${build.loops.dir}"/>
216 +  </path>
217 +
218 +  <!-- Support @jls tag, used in jdk8+ javadoc -->
219 +  <property name="javadoc.jls.cite" value="The Java&amp;trade; Language Specification"/>
220 +  <property name="javadoc.jls.option" value="jls:a:See &lt;cite&gt;${javadoc.jls.cite}&lt;/cite&gt;:"/>
221  
222    <!-- Main targets -->
223  
224 <  <target name="compile"
225 <          depends="init, configure-compiler, prepare-src"
226 <          description="Compiles main sources to build folder">
224 >  <target name="dists"
225 >          depends="dist, 4jdk7dist, jsr166edist, jsr166ydist, extra166ydist, jsr166xdist"
226 >          description="Builds all public jars and docs"/>
227  
228 <    <property name="prepare.src.dir" value="${src.dir}"/>
228 >  <target name="compile"
229 >          depends="configure-compiler"
230 >          description="Compiles src/main sources to build dir">
231  
232      <mkdir dir="${build.classes.dir}"/>
233  
234 < <!--
235 <    <echo>javac ${build.args}</echo>
236 < -->
237 <
238 <    <javac srcdir="${prepare.src.dir}"
239 <          destdir="${build.classes.dir}"
240 <            debug="${build.debug}"
241 <       debuglevel="${build.debuglevel}"
242 <      deprecation="${build.deprecation}"
243 <           source="${build.sourcelevel}"
244 <             fork="true">
245 <
246 <      <compilerarg    line="${build.args}"/>
234 >    <javac srcdir="${src.dir}"
235 >           destdir="${build.classes.dir}"
236 >           debug="${build.debug}"
237 >           debuglevel="${build.debuglevel}"
238 >           deprecation="${build.deprecation}"
239 >           classpath=""
240 >           includeAntRuntime="false"
241 >           includeJavaRuntime="false"
242 >           executable="${javac8}"
243 >           fork="true">
244 >
245 >      <include name="**/*.java"/>
246 >      <compilerarg value="-XDignore.symbol.file=true"/>
247 >      <compilerarg value="-Xlint:all"/>
248 >      <compilerarg line="${build.args}"/>
249  
250      </javac>
95
251    </target>
252  
253  
254    <target name="jar"
255 <          depends="init-jar, native-jar"
256 <          description="Builds library jar from compiled sources"/>
255 >          depends="compile"
256 >          description="Builds library jar from compiled sources">
257 >
258 >    <jar destfile="${product.jar}">
259 >      <fileset dir="${build.classes.dir}"/>
260 >    </jar>
261 >  </target>
262  
263  
264    <target name="test"
265 <          depends="init, configure-tests, report-tests"
265 >          depends="configure-tests, report-tests"
266            description="Runs all tests (requires JUnit 3.8.1 in ${ant.home}/lib)" />
267  
268  
269 <  <target name="checkstyle"
270 <          depends="filter-src"
111 <          description="Reports on style errors in Java source (verbose, mostly chaff)">
269 >  <target name="docs"
270 >          description="Builds javadocs for src/main to dist dir">
271  
272 <    <taskdef resource="checkstyletask.properties"
273 <            classpath="${lib.dir}/checkstyle-all-2.4.jar"/>
272 >    <delete dir="${docs.dir}"/>
273 >    <mkdir dir="${docs.dir}"/>
274  
275 <    <checkstyle>
276 <      <formatter type="plain"/>  <!-- also available: type="xml" -->
118 <      <fileset dir="${build.filter.src.dir}" includes="**/*.java"/>
119 <    </checkstyle>
275 >    <!-- the packagenames="none" hack below prevents scanning the -->
276 >    <!-- sourcepath for packages -->
277  
278 +    <javadoc destdir="${docs.dir}"
279 +             packagenames="none"
280 +             link="${jdkapi8docs.url}"
281 +             overview="${src.dir}/intro.html"
282 +             sourcepath="${src.dir}:${jdk8src.dir}"
283 +             classpath=""
284 +             executable="${javadoc8}">
285 +      <fileset dir="${src.dir}" defaultexcludes="yes">
286 +        <include name="**/*.java"/>
287 +      </fileset>
288 +      <arg value="-XDignore.symbol.file=true"/>
289 +      <arg value="-tag"/>
290 +      <arg value="${javadoc.jls.option}"/>
291 +    </javadoc>
292    </target>
293  
294  
295 <  <target name="doccheck"
296 <          depends="filter-doccheck"
297 <          description="Reports on javadoc style errors">
295 >  <target name="dist"
296 >          depends="dist-clean, dist-jar, dist-docs"
297 >          description="Puts all distributable products in single hierarchy"/>
298  
128    <delete dir="${build.doccheck.dir}"/>
129    <mkdir dir="${build.doccheck.dir}"/>
299  
300 <    <javadoc doclet="com.sun.tools.doclets.doccheck.DocCheck"
301 <         docletpath="${lib.dir}/doccheck.jar"
302 <            destdir="${build.doccheck.dir}">
134 <      <packageset dir="${build.filter.doccheck.dir}"/>
135 <    </javadoc>
300 >  <target name="release"
301 >          depends="dist"
302 >          description="Puts entire CVS tree, plus distribution productions, in a jar">
303  
304 <    <echo>DocCheck output is in ${build.doccheck.dir}</echo>
304 >    <property name="release.jar" value="dist/jsr166-${version}-dist.jar"/>
305  
306 +    <jar basedir="${basedir}" destfile="${release.jar}">
307 +      <!-- <exclude name="build/**"/> -->
308 +      <exclude name="${release.jar}"/>
309 +      <exclude name="user.properties"/>
310 +      <exclude name="etc/notes/**"/>
311 +      <exclude name="src/emulation/**"/>
312 +      <exclude name="**/SyntaxTest.java"/>
313 +      <exclude name="**/SuperfluousAbstract.java"/>
314 +    </jar>
315    </target>
316  
317  
318 <  <target name="docs"
319 <          depends="filter-src"
144 <          description="Builds javadocs with custom tags to build folder">
318 >  <target name="clean"
319 >          description="Removes all build products">
320  
321 <    <delete dir="${build.javadocs.dir}"/>
147 <    <mkdir dir="${build.javadocs.dir}"/>
321 >    <delete dir="${build.dir}"/>
322  
323 <    <javadoc destdir="${build.javadocs.dir}"
150 <                link="http://java.sun.com/j2se/1.4.1/docs/api"
151 <            overview="${src.dir}/intro.html"
152 <              source="${build.docsourcelevel}">
153 <
154 <      <tag name="revised" description="Last revised:"/>
155 <      <tag name="spec"    description="Specified by:"/>
156 <      <tag name="editor"  description="Last edited by:"/>
157 <      <tag name="fixme"   description="FIX ME:"/>
323 >  </target>
324  
159      <packageset dir="${build.filter.src.dir}"/>
325  
326 <    </javadoc>
326 >  <target name="dist-clean"
327 >          description="Removes all build and distribution products">
328  
329 <  </target>
329 >    <delete dir="${dist.dir}"/>
330  
331 +  </target>
332  
166  <target name="sinjdocs"
167          depends="configure-tests"
168          description="Builds javadocs with custom tags to build folder">
333  
334 <    <delete dir="${build.sinjdocs.dir}"/>
171 <    <mkdir dir="${build.sinjdocs.dir}"/>
334 >  <!-- Internal targets -->
335  
173    <java classname="net.cscott.sinjdoc.Main" fork="true">
336  
337 <      <jvmarg value="-Xbootclasspath/p:${test.bootclasspath}"/>
337 >  <target name="dist-jar"
338 >          depends="clean, jar">
339 >    <copy file="${product.jar}" todir="${dist.dir}"/>
340 >  </target>
341  
342 <      <classpath>
343 <        <pathelement location="${sinjdoc.jar}"/>
344 <        <pathelement location="${lib.dir}/jutil.jar"/>
345 <        <pathelement location="${lib.dir}/cup.jar"/>
181 <        <path refid="test.classpath"/>
182 <      </classpath>
342 >  <target name="dist-docs"
343 >          depends="clean, docs">
344 >    <mirror-dir src="${docs.dir}" dst="${dist.docs.dir}"/>
345 >  </target>
346  
184      <!-- <arg value="-help"/> -->
185      <!-- <arg value="-verbose"/> -->
186      <!-- <arg value="-link"/>  <arg value="http://java.sun.com/j2se/1.4.1/docs/api"/> -->
187      
188      <arg value="-d"/>          <arg value="${build.sinjdocs.dir}"/>
189      <arg value="-sourcepath"/> <arg value="${src.dir}"/>
190      <arg value="-overview"/>   <arg value="${src.dir}/intro.html"/>
191      <arg value="-source"/>     <arg value="${build.sourcelevel}"/>
192      
193      <arg value="java.lang"/>
194      <arg value="java.util"/>
195      <arg value="java.util.concurrent"/>
196      <arg value="java.util.concurrent.atomic"/>
197      <arg value="java.util.concurrent.locks"/>
347  
348 +  <target name="compile-tests"
349 +          depends="jar">
350  
351 <    </java>
351 >    <mkdir dir="${build.testcases.dir}"/>
352  
353 <  </target>
353 >    <javac srcdir="${tck.src.dir}"
354 >           destdir="${build.testcases.dir}"
355 >           debug="${build.debug}"
356 >           debuglevel="${build.debuglevel}"
357 >           deprecation="${build.deprecation}"
358 >           source="6"
359 >           classpath="${junit.jar}"
360 >           bootclasspath="@{product.jar}:${bootclasspath6}"
361 >           includeAntRuntime="false"
362 >           includeJavaRuntime="false"
363 >           executable="${javac8}"
364 >           fork="true">
365 >
366 >      <include name="**/*.java"/>
367 >      <compilerarg value="-XDignore.symbol.file=true"/>
368 >      <compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial,-deprecation"/>
369 >      <compilerarg line="${build.args}"/>
370  
371 +    </javac>
372  
373 <  <target name="strip"
374 <          depends="init, configure-compiler"
375 <          description="Strip generics from java source (not working yet)">
373 >    <javac srcdir="${test.src.dir}"
374 >           destdir="${build.testcases.dir}"
375 >           debug="${build.debug}"
376 >           debuglevel="${build.debuglevel}"
377 >           deprecation="${build.deprecation}"
378 >           source="6"
379 >           classpath=""
380 >           bootclasspath="@{product.jar}:${bootclasspath6}"
381 >           includeAntRuntime="false"
382 >           includeJavaRuntime="false"
383 >           executable="${javac8}"
384 >           fork="true">
385 >
386 >      <include name="jsr166/test/**/*.java"/>
387 >      <compilerarg value="-XDignore.symbol.file=true"/>
388 >      <compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial,-deprecation"/>
389 >      <compilerarg line="${build.args}"/>
390  
391 <    <mkdir dir="${build.stripped.dir}"/>
391 >    </javac>
392  
393 <    <!--
394 <     # javac -s doesn't reliably generate compilable code. It generates
395 <     # bridge methods (marked as "synthetic") that can have identical
214 <     # signatures to existing methods except for the return value.
215 <     -->
216 <    <javac srcdir="${src.dir}"
217 <          destdir="${build.stripped.dir}"
393 > <!--
394 >    <javac srcdir="${jtreg.src.dir}"
395 >          destdir="${build.testcases.dir}"
396              debug="${build.debug}"
397         debuglevel="${build.debuglevel}"
398        deprecation="${build.deprecation}"
399             source="${build.sourcelevel}"
400               fork="true">
401  
402 <      <compilerarg    line="${build.args} -s"/>
402 >      <compilerarg value="-Xbootclasspath/p:${product.jar}"/>
403 >      <compilerarg value="-XDignore.symbol.file=true"/>
404 >      <compilerarg line="${build.args}"/>
405  
406      </javac>
407 + -->
408  
409    </target>
410  
411  
412 <  <target name="dist"
413 <          depends="init, dist-clean, dist-jar, dist-docs"
233 <          description="Puts all distributable products in single hierarchy"/>
412 >  <target name="run-tests"
413 >          depends="compile-tests">
414  
415 <  <target name="release"
416 <          depends="dist"
417 <          description="Puts entire CVS tree, plus distribution productions, in a jar">
415 >    <!-- May be overridden by user.properties -->
416 >    <property name="testcase" value="*"/>
417 >
418 >    <mkdir dir="${build.reports.dir}"/>
419 >
420 >    <junit printsummary="true"
421 >             showoutput="true"
422 >          errorProperty="junit.failed"
423 >        failureProperty="junit.failed"
424 >                    dir="${build.reports.dir}"
425 >                    jvm="${java8}"
426 >                   fork="true">
427 >
428 >      <jvmarg value="-Xbootclasspath/p:${product.jar}"/>
429 >      <jvmarg value="-server"/>
430 >      <jvmarg value="-showversion"/>
431 >
432 >      <classpath refid="test.classpath"/>
433 >
434 >      <formatter type="xml"/>
435 >
436 >      <batchtest todir="${build.reports.dir}" unless="no.test.tck">
437 >        <fileset dir="${tck.src.dir}">
438 >          <include name="**/${testcase}Test.java"/>
439 >        </fileset>
440 >      </batchtest>
441 >
442 >      <batchtest todir="${build.reports.dir}" if="do.test.old">
443 >        <fileset dir="${test.src.dir}">
444 >          <include name="jsr166/test/**/${testcase}Test.java"/>
445 >        </fileset>
446 >      </batchtest>
447  
448   <!--
449 <    #keep build dir? - dl
450 <    <delete dir="${build.dir}"/>
449 >      <batchtest todir="${build.reports.dir}" if="do.test.jtreg">
450 >        <fileset dir="${jtreg.src.dir}">
451 >          <include name="**/${testcase}Test.java"/>
452 >        </fileset>
453 >      </batchtest>
454   -->
243    <property name="release.jar" value="dist/jsr166-${version}-dist.jar"/>
455  
456 <    <jar basedir="${basedir}" destfile="${release.jar}">
246 <      <exclude name="${release.jar}"/>
247 <      <exclude name="user.properties"/>
248 <      <exclude name="etc/notes/**"/>
249 <      <exclude name="**/SyntaxTest.java"/>
250 <    </jar>
456 >    </junit>
457  
458    </target>
459  
254  <target name="clean"
255          description="Removes all build products">
460  
461 <    <delete dir="${build.dir}"/>
462 <    <delete dir="${build.classes.dir}"/>
463 <    <delete dir="${build.lib.dir}"/>
461 >  <target name="report-tests"
462 >          depends="run-tests">
463 >
464 >    <!-- Sets junit.report.format to frames if redirection is present,
465 >         otherwise sets it to noframes. -->
466 >    <available property="junit.report.format"
467 >                  value="frames"
468 >              classname="org.apache.xalan.lib.Redirect"
469 >    />
470 >    <property name="junit.report.format" value="noframes"/>
471 >
472 >    <junitreport todir="${build.reports.dir}">
473 >      <fileset dir="${build.reports.dir}">
474 >        <include name="TEST-*.xml"/>
475 >      </fileset>
476 >      <report format="${junit.report.format}" todir="${build.reports.dir}"
477 >      />
478 >    </junitreport>
479 >
480 >    <fail message="Test Cases Failed" if="junit.failed"/>
481  
482    </target>
483  
484  
485 <  <target name="dist-clean"
265 <          description="Removes all build and distribution products">
485 >  <target name="configure-compiler">
486  
487 <    <delete dir="${dist.dir}"/>
487 >    <property name="unchecked.option" value="-Xlint:unchecked"/>
488 >
489 >    <condition property="warnunchecked.arg" value="${unchecked.option}">
490 >      <istrue value="${build.warnunchecked}"/>
491 >    </condition>
492 >
493 >    <property name="warnunchecked.arg" value=""/>
494 >
495 >
496 >    <!-- Common options in javac invocations -->
497 >    <property name="build.args" value="${warnunchecked.arg}"/>
498  
499    </target>
500  
501  
502 <  <target name="dist-docs"
503 <          depends="filter-src"
274 <          description="Builds javadocs without custom tags to dist folder">
502 >  <target name="configure-tests"
503 >       depends="configure-compiler">
504  
505 <    <delete dir="${dist.javadocs.dir}"/>
506 <    <mkdir dir="${dist.javadocs.dir}"/>
505 >    <!-- junit.framework.Protectable is in JUnit 3.8.1 but not in 3.7 -->
506 >    <available property="junit.available"
507 >               classname="junit.framework.Protectable"/>
508  
509 <    <javadoc destdir="${dist.javadocs.dir}"
510 <                link="http://java.sun.com/j2se/1.4.1/docs/api"
511 <            overview="${src.dir}/intro.html"
282 <              source="${build.docsourcelevel}">
509 >    <!-- Xalan -->
510 >    <available property="xalan.available"
511 >               classname="org.apache.xalan.Version"/>
512  
284      <packageset dir="${build.filter.src.dir}"/>
513  
514 <    </javadoc>
514 >    <!-- Ant 1.6beta and later don't need or want this check -->
515 >    <!--
516 >    <fail message="Need JUnit 3.8.1 in ${ant.home}${file.separator}lib to run tests"
517 >          unless="junit.available"/>
518 >
519 >    <fail message="Need Xalan 2.5.1 jar in ${ant.home}${file.separator}lib to run tests"
520 >          unless="xalan.available"/>
521 >    -->
522  
523    </target>
524  
525  
526 +  <!-- Various demos and test programs -->
527  
292  <!-- Internal targets -->
528  
529 +  <target name="loops" depends="configure-compiler"
530 +          description="Benchmark from Doug Lea's AQS paper">
531 +
532 +    <mkdir dir="${build.loops.dir}"/>
533 +
534 +    <javac srcdir="${loops.src.dir}"
535 +          destdir="${build.loops.dir}"
536 +            debug="${build.debug}"
537 +       debuglevel="${build.debuglevel}"
538 +      deprecation="${build.deprecation}"
539 +           source="${build.sourcelevel}"
540 +             fork="true">
541 +
542 +      <compilerarg line="${build.args}"/>
543 +      <classpath refid="loops.classpath"/>
544 +      <compilerarg value="-XDignore.symbol.file=true"/>
545  
546 <  <target name="init">
546 >    </javac>
547  
548 <    <!-- Version is kept in a separate file -->
549 <    <loadfile property="version" srcFile="version.properties"/>
550 <    <echo>Building JSR-166 version ${version}</echo>
300 <    <echo>java.home is ${java.home}</echo>
548 >    <java classname="ALoops" fork="true">
549 >      <classpath refid="loops.classpath"/>
550 >    </java>
551  
552    </target>
553  
554  
555 <  <target name="init-jar">
555 >  <!-- jsr166 4jdk7 -->
556 >
557 >  <target name="4jdk7compile"
558 >          depends="configure-compiler"
559 >          description="Compiles src/jdk7 sources, targeting jdk7">
560 >
561 >    <mkdir dir="${build.4jdk7.classes.dir}"/>
562  
563 <    <mkdir dir="${build.lib.dir}"/>
563 >    <javac srcdir="${4jdk7src.dir}"
564 >           destdir="${build.4jdk7.classes.dir}"
565 >           debug="${build.debug}"
566 >           debuglevel="${build.debuglevel}"
567 >           deprecation="${build.deprecation}"
568 >           source="6"
569 >           classpath=""
570 >           bootclasspath="${bootclasspath6}"
571 >           includeAntRuntime="false"
572 >           includeJavaRuntime="false"
573 >           executable="${javac7}"
574 >           fork="true">
575 >
576 >      <include name="**/*.java"/>
577 >      <compilerarg value="-XDignore.symbol.file=true"/>
578 >      <compilerarg value="-Xlint:all"/>
579 >      <compilerarg line="${build.args}"/>
580  
581 +    </javac>
582    </target>
583  
584  
585 <  <target name="native-jar"
586 <          depends="compile">
585 >  <target name="4jdk7-jar"
586 >          depends="4jdk7compile"
587 >          description="Builds library jar from compiled sources">
588  
589 <    <jar destfile="${product.jar}">
590 <      <fileset dir="${build.classes.dir}"/>
589 >    <jar destfile="${4jdk7product.jar}">
590 >      <fileset dir="${build.4jdk7.classes.dir}"/>
591      </jar>
592  
593    </target>
594  
595  
596 <  <target name="dist-jar"
597 <          depends="clean, jar">
598 <
325 <    <copy file="${product.jar}" todir="${dist.dir}"/>
596 >  <target name="4jdk7-test-tck"
597 >          depends="4jdk7-jar"
598 >          description="Runs tck tests for jsr166-4jdk7 directly">
599  
600 +    <run-tck-tests
601 +      target="7"
602 +      workdir="${build.4jdk7.dir}"
603 +      classes="${4jdk7product.jar}"/>
604    </target>
605  
606  
607 <  <target name="compile-ant-filter"
608 <          depends="init">
607 >  <target name="4jdk7-test-tck-junit"
608 >          depends="4jdk7compile"
609 >          description="Runs tck tests for jsr166-4jdk7 via junit task (experimental)">
610  
611 <    <mkdir dir="${build.ant.dir}"/>
611 >    <junit printsummary="true"
612 >           showoutput="true"
613 >           errorProperty="junit.failed"
614 >           failureProperty="junit.failed"
615 >           includeantruntime="true"
616 >           jvm="${java7}"
617 >           fork="true">
618  
619 <    <javac srcdir="${ant.src.dir}"
620 <          destdir="${build.ant.dir}"
337 <           source="1.4"
338 <    />
619 >      <jvmarg value="-Xbootclasspath/p:${4jdk7product.jar}"/>
620 >      <jvmarg value="-server"/>
621  
622 +      <classpath>
623 +        <pathelement location="${junit.jar}"/>
624 +        <pathelement location="${build.4jdk7.tck.classes.dir}"/>
625 +      </classpath>
626 +
627 +      <formatter type="brief"/>
628 +
629 +      <test name="JSR166TestCase" haltonfailure="no">
630 +      </test>
631 +
632 +    </junit>
633    </target>
634  
635 +  <target name="4jdk7-test-jtreg"
636 +          depends="4jdk7compile"
637 +          description="Runs jtreg tests for jsr166-4jdk7 using the jtreg ant task">
638 +    <delete dir="${build.4jdk7.dir}/JTwork"   quiet="true"/>
639 +    <delete dir="${build.4jdk7.dir}/JTreport" quiet="true"/>
640 +    <mkdir dir="${build.4jdk7.dir}/JTwork/scratch"/>
641 +    <mkdir dir="${build.4jdk7.dir}/JTreport"/>
642 +    <jtreg dir="${jtreg.src.dir}"
643 +           jdk="${jdk7.home}"
644 +           workDir="${build.4jdk7.dir}/JTwork"
645 +           reportDir="${build.4jdk7.dir}/JTreport">
646 +
647 +      <arg value="-Xbootclasspath/p:${4jdk7product.jar}"/>
648 +      <arg value="-agentvm"/>
649 +      <arg value="-v:nopass,fail"/>
650 +      <arg value="-vmoptions:-esa -ea"/>
651 +      <arg value="-automatic"/>
652 +      <arg value="-k:!ignore"/>
653 +    </jtreg>
654 +  </target>
655  
343  <target name="filter-src"
344          depends="compile-ant-filter">
656  
657 <    <mkdir dir="${build.filter.src.dir}"/>
657 >  <target name="4jdk7-test"
658 >          depends="4jdk7-test-tck, 4jdk7-test-jtreg"
659 >          description="Runs tck and jtreg tests for jsr166-4jdk7">
660 >  </target>
661  
348    <copy todir="${build.filter.src.dir}">
349      <fileset dir="${src.dir}">
350        <include name="**/*.html"/>
351      </fileset>
352    </copy>
662  
663 <    <copy todir="${build.filter.src.dir}">
664 <      <fileset dir="${src.dir}">
665 <        <exclude name="**/*.html"/>
666 <        <patternset refid="docs.exclusion"/>
663 >  <target name="4jdk7docs"
664 >          description="Builds javadocs for src/jdk7 to dist dir">
665 >
666 >    <delete dir="${4jdk7docs.dir}"/>
667 >    <mkdir dir="${4jdk7docs.dir}"/>
668 >
669 >    <javadoc destdir="${4jdk7docs.dir}"
670 >             packagenames="none"
671 >             link="${jdkapi7docs.url}"
672 >             overview="${4jdk7src.dir}/intro.html"
673 >             sourcepath="${4jdk7src.dir}:${jdk7src.dir}"
674 >             classpath=""
675 >             executable="${javadoc7}">
676 >      <fileset dir="${4jdk7src.dir}" defaultexcludes="yes">
677 >        <include name="**/*.java"/>
678        </fileset>
679 <      <filterchain>
679 >      <arg value="-XDignore.symbol.file=true"/>
680 >    </javadoc>
681 >  </target>
682  
361        <!--
362         # This filter gets rid of angle-bracketed type parameters
363         # so that javadoc can run on the result. The following
364         # heuristic seems to work:
365         #
366         # For all lines not starting with space(s)-asterisk-space(s),
367         #   replace <something> with a space, where there may be more
368         #   than one right angle bracket at the end, and "something"
369         #   must not contain parens or pipes. (This may need some
370         #   tweaking.)
371         -->
372
373        <filterreader classname="jsr166.ant.filters.ReplaceFilter"
374                      classpath="${build.ant.dir}">
375          <param name="notmatching" value="^\s+\*\s.*$"/>
376          <param name="pattern"     value="&lt;[^|>()]+?>+"/>
377          <param name="replacement" value=" "/>
378        </filterreader>
683  
684 <      </filterchain>
685 <    </copy>
684 >  <target name="4jdk7dist"
685 >          depends="4jdk7dist-jar, 4jdk7dist-docs"
686 >          description="Puts all distributable products in single hierarchy"/>
687 >
688 >
689 >  <target name="4jdk7clean"
690 >          description="Removes all 4jdk7 build products">
691 >
692 >    <delete dir="${build.4jdk7.dir}"/>
693  
694    </target>
695  
696  
697 +  <target name="4jdk7dist-clean"
698 +          description="Removes all build and distribution products">
699  
700 +  </target>
701  
702 <  <target name="filter-doccheck"
703 <          depends="filter-src">
702 >  <target name="4jdk7dist-jar"
703 >          depends="4jdk7clean, 4jdk7-jar">
704 >    <copy file="${4jdk7product.jar}" todir="${dist.dir}"/>
705 >  </target>
706  
391    <mkdir dir="${build.filter.doccheck.dir}"/>
707  
708 <    <copy todir="${build.filter.doccheck.dir}">
709 <      <fileset dir="${build.filter.src.dir}">
710 <        <include name="**/*.html"/>
711 <      </fileset>
397 <    </copy>
708 >  <target name="4jdk7dist-docs"
709 >          depends="4jdk7clean, 4jdk7docs">
710 >    <mirror-dir src="${4jdk7docs.dir}" dst="${dist.4jdk7docs.dir}"/>
711 >  </target>
712  
399    <property name="generic.declarations"
400             value="/** Fake type parameter. */ public interface E {} /** Fake type parameter. */ public interface T {} /** Fake type parameter. */ public interface K {} /** Fake type parameter. */ public interface V {}"
401    />
713  
714 <    <copy todir="${build.filter.doccheck.dir}">
404 <      <fileset dir="${build.filter.src.dir}">
405 <        <exclude name="**/*.html"/>
406 <      </fileset>
407 <      <filterchain>
408 <        <!--
409 <         # These two filters try to make the source look like
410 <         # something that doccheck can process. The first removes
411 <         # -source 1.4 assertions and the second adds in a bunch
412 <         # of single letter public nested marker interfaces so that
413 <         # the generic type parameters are recognized.
414 <         -->
415 <
416 <        <filterreader classname="jsr166.ant.filters.ReplaceFilter"
417 <                      classpath="${build.ant.dir}">
418 <          <param name="matching"    value="^\s*assert[\s ].*$"/>
419 <          <param name="pattern"     value="assert"/>
420 <          <param name="replacement" value="//assert"/>
421 <        </filterreader>
422 <
423 <        <filterreader classname="jsr166.ant.filters.ReplaceFilter"
424 <                      classpath="${build.ant.dir}">
425 <          <param name="matching"    value="^([^*]*(class|interface|implements) .*|)\{.*$"/>
426 <          <param name="pattern"     value="$"/>
427 <          <param name="replacement" value=" ${generic.declarations}"/>
428 <        </filterreader>
714 >  <!-- jsr166x -->
715  
716 <      </filterchain>
717 <    </copy>
716 >  <target name="jsr166xcompile"
717 >          depends="configure-compiler"
718 >          description="Compiles jsr166x sources to build dir">
719 >
720 >    <mkdir dir="${build.jsr166x.classes.dir}"/>
721 >
722 >    <javac srcdir="${topsrc.dir}"
723 >           destdir="${build.jsr166x.classes.dir}"
724 >           debug="${build.debug}"
725 >           debuglevel="${build.debuglevel}"
726 >           deprecation="${build.deprecation}"
727 >           classpath=""
728 >           bootclasspath="${bootclasspath6}"
729 >           source="5"
730 >           includeAntRuntime="false"
731 >           includeJavaRuntime="false"
732 >           executable="${javac7}"
733 >           fork="true">
734 >
735 >      <include name="jsr166x/**/*.java"/>
736 >      <compilerarg value="-XDignore.symbol.file=true"/>
737 >      <compilerarg value="-Xlint:all,-unchecked,-rawtypes"/>
738 >      <compilerarg line="${build.args}"/>
739  
740 +    </javac>
741    </target>
742  
743  
744 <  <target name="compile-tests"
745 <          depends="jar">
744 >  <target name="jsr166x-jar"
745 >          depends="jsr166xcompile"
746 >          description="Builds library jar from compiled sources">
747  
748 <    <mkdir dir="${build.testcases.dir}"/>
748 >    <jar destfile="${jsr166x.jar}">
749 >      <fileset dir="${build.jsr166x.classes.dir}"/>
750 >    </jar>
751  
752 < <!--
442 <    <echo>javac ${build.args}</echo>
443 <    <echo>classpath="${test.classpath}"</echo>
444 < -->
752 >  </target>
753  
446    <javac srcdir="${test.src.dir}"
447          destdir="${build.testcases.dir}"
448            debug="${build.debug}"
449       debuglevel="${build.debuglevel}"
450      deprecation="${build.deprecation}"
451           source="${build.sourcelevel}"
452             fork="true">
754  
755 +  <target name="jsr166xdocs"
756 +          description="Builds javadocs to dist dir">
757 +
758 +    <delete dir="${jsr166xdocs.dir}"/>
759 +    <mkdir dir="${jsr166xdocs.dir}"/>
760 +
761 +    <javadoc destdir="${jsr166xdocs.dir}"
762 +             packagenames="jsr166x.*"
763 +             link="${jdkapidocs.url}"
764 +             sourcepath="${topsrc.dir}:${jdk6src.dir}"
765 +             bootclasspath="${bootclasspath6}"
766 +             source="5"
767 +             executable="${javadoc7}">
768 +      <arg value="-XDignore.symbol.file=true"/>
769 +
770 +    </javadoc>
771 +  </target>
772 +
773 +
774 +  <target name="jsr166xdist"
775 +          depends="jsr166xdist-jar, jsr166xdist-docs"
776 +          description="Puts all distributable products in single hierarchy"/>
777 +
778 +
779 +  <target name="jsr166xclean"
780 +          description="Removes all jsr166x build products">
781 +
782 +    <delete dir="${build.jsr166x.dir}"/>
783 +
784 +  </target>
785 +
786 +
787 +  <target name="jsr166xdist-clean"
788 +          description="Removes all build and distribution products">
789 +
790 +  </target>
791 +
792 +
793 +  <target name="jsr166xdist-jar"
794 +          depends="jsr166xclean, jsr166x-jar">
795 +    <copy file="${jsr166x.jar}" todir="${dist.dir}"/>
796 +  </target>
797 +
798 +  <target name="jsr166xdist-docs"
799 +          depends="jsr166xclean, jsr166xdocs">
800 +    <mirror-dir src="${jsr166xdocs.dir}" dst="${dist.jsr166xdocs.dir}"/>
801 +  </target>
802 +
803 +  <!-- jsr166y -->
804 +
805 +
806 +  <target name="jsr166ycompile"
807 +          depends="configure-compiler"
808 +          description="Compiles jsr166y sources">
809 +
810 +    <mkdir dir="${build.jsr166y.classes.dir}"/>
811 +
812 +    <javac srcdir="${topsrc.dir}"
813 +           destdir="${build.jsr166y.classes.dir}"
814 +           debug="${build.debug}"
815 +           debuglevel="${build.debuglevel}"
816 +           deprecation="${build.deprecation}"
817 +           source="6"
818 +           classpath=""
819 +           bootclasspath="${bootclasspath6}"
820 +           includeAntRuntime="false"
821 +           includeJavaRuntime="false"
822 +           executable="${javac7}"
823 +           fork="true">
824 +
825 +      <include name="jsr166y/**/*.java"/>
826 +      <compilerarg value="-XDignore.symbol.file=true"/>
827 +      <compilerarg value="-Xlint:all"/>
828        <compilerarg line="${build.args}"/>
455      <classpath refid="test.classpath"/>
456      
457      <include name="java/**"/>
458      <include name="jsr166/**"/>
829  
830      </javac>
831 +  </target>
832 +
833 +
834 +  <target name="jsr166y-jar"
835 +          depends="jsr166ycompile"
836 +          description="Builds library jar from compiled sources">
837 +
838 +    <jar destfile="${jsr166y.jar}" index="true">
839 +      <fileset dir="${build.jsr166y.classes.dir}"/>
840 +    </jar>
841  
842    </target>
843  
844  
845 <  <target name="run-tests"
846 <          depends="compile-tests">
845 >  <target name="jsr166ydocs"
846 >          description="Builds javadocs to dist dir">
847  
848 <    <!-- May be overridden by user.properties -->
849 <    <property name="testcase" value="*"/>
848 >    <delete dir="${jsr166ydocs.dir}"/>
849 >    <mkdir dir="${jsr166ydocs.dir}"/>
850  
851 <    <mkdir dir="${build.reports.dir}"/>
851 >    <javadoc destdir="${jsr166ydocs.dir}"
852 >             packagenames="jsr166y.*"
853 >             link="${jdkapidocs.url}"
854 >             sourcepath="${topsrc.dir}:${jdk6src.dir}"
855 >             bootclasspath="${bootclasspath6}"
856 >             source="6"
857 >             executable="${javadoc7}">
858 >      <arg value="-XDignore.symbol.file=true"/>
859  
860 <    <junit printsummary="true"
861 <             showoutput="true"
475 <          errorProperty="junit.failed"
476 <        failureProperty="junit.failed"
477 <                    dir="${build.reports.dir}"
478 <                   fork="true">
860 >    </javadoc>
861 >  </target>
862  
480      <jvmarg value="-Xbootclasspath:${test.bootclasspath}"/>
863  
864 <      <formatter type="xml"/>
864 >  <target name="jsr166ydist"
865 >          depends="jsr166ydist-jar, jsr166ydist-docs"
866 >          description="Puts all distributable products in single hierarchy"/>
867  
484      <batchtest todir="${build.reports.dir}">
485        <fileset dir="${test.src.dir}">
486          <include name="java/**/${testcase}Test.java"/>
487          <include name="jsr166/**/${testcase}Test.java"/>
488        </fileset>
489      </batchtest>
868  
869 <    </junit>
869 >  <target name="jsr166yclean"
870 >          description="Removes all jsr166y build products">
871 >
872 >    <delete dir="${build.jsr166y.dir}"/>
873  
874    </target>
875  
876  
877 <  <target name="report-tests"
878 <          depends="run-tests">
877 >  <target name="jsr166ydist-clean"
878 >          description="Removes all build and distribution products">
879  
880 <    <!-- Sets junit.report.format to frames if redirection is present,
500 <         otherwise sets it to noframes. -->
501 <    <available property="junit.report.format"
502 <                  value="frames"
503 <              classname="org.apache.xalan.lib.Redirect"
504 <    />
505 <    <property name="junit.report.format" value="noframes"/>
880 >  </target>
881  
882 <    <junitreport todir="${build.reports.dir}">
883 <      <fileset dir="${build.reports.dir}">
884 <        <include name="TEST-*.xml"/>
885 <      </fileset>
886 <      <report styledir="${stylesheet.dir}"
887 <                format="${junit.report.format}"
888 <                 todir="${build.reports.dir}"
889 <      />
890 <    </junitreport>
882 >  <target name="jsr166ydist-jar"
883 >          depends="jsr166yclean, jsr166y-jar">
884 >    <copy file="${jsr166y.jar}" todir="${dist.dir}"/>
885 >  </target>
886 >
887 >  <target name="jsr166ydist-docs"
888 >          depends="jsr166yclean, jsr166ydocs">
889 >    <mirror-dir src="${jsr166ydocs.dir}" dst="${dist.jsr166ydocs.dir}"/>
890 >  </target>
891 >
892 >
893 >  <!-- extra166y -->
894  
517    <fail message="Test Cases Failed" if="junit.failed"/>
895  
896 +  <target name="extra166ycompile"
897 +          depends="configure-compiler, jsr166y-jar"
898 +          description="Compiles extra166y sources">
899 +
900 +    <mkdir dir="${build.extra166y.classes.dir}"/>
901 +
902 +    <javac srcdir="${topsrc.dir}"
903 +           destdir="${build.extra166y.classes.dir}"
904 +           debug="${build.debug}"
905 +           debuglevel="${build.debuglevel}"
906 +           deprecation="${build.deprecation}"
907 +           bootclasspath="@{jsr166y.jar}:${bootclasspath6}"
908 +           classpath=""
909 +           source="6"
910 +           includeAntRuntime="false"
911 +           includeJavaRuntime="false"
912 +           executable="${javac7}"
913 +           fork="true">
914 +
915 +      <include name="extra166y/**/*.java"/>
916 +      <compilerarg value="-XDignore.symbol.file=true"/>
917 +      <compilerarg value="-Xlint:all,-unchecked,-rawtypes,-serial"/>
918 +      <compilerarg line="${build.args}"/>
919 +
920 +    </javac>
921    </target>
922  
923  
924 <  <target name="configure-compiler">
924 >  <target name="extra166y-jar"
925 >          depends="extra166ycompile"
926 >          description="Builds library jar from compiled sources">
927  
928 <    <property name="unchecked.option" value="-Xlint:unchecked"/>
928 >    <jar destfile="${extra166y.jar}" index="true">
929 >      <fileset dir="${build.extra166y.classes.dir}"/>
930 >    </jar>
931  
932 <    <condition property="warnunchecked.arg" value="${unchecked.option}">
527 <      <istrue value="${build.warnunchecked}"/>
528 <    </condition>
932 >  </target>
933  
530    <property name="warnunchecked.arg" value=""/>
531    
532    <condition property="prepare.src.dir" value="${build.dir}/prepare-src">
533      <istrue value="${build.nothreads}"/>
534    </condition>
934  
935 +  <target name="extra166ydocs"
936 +          description="Builds javadocs to build dir">
937  
938 <    <!-- Common options in javac invocations -->
939 <    <property name="build.args" value="${warnunchecked.arg}"/>
938 >    <delete dir="${extra166ydocs.dir}"/>
939 >    <mkdir dir="${extra166ydocs.dir}"/>
940 >
941 >    <javadoc destdir="${extra166ydocs.dir}"
942 >             packagenames="extra166y.*"
943 >             link="${jdkapidocs.url}"
944 >             sourcepath="${topsrc.dir}:${jdk6src.dir}"
945 >             bootclasspath="${bootclasspath6}"
946 >             source="6"
947 >             executable="${javadoc7}">
948 >      <arg value="-XDignore.symbol.file=true"/>
949  
950 +    </javadoc>
951    </target>
952  
953  
954 <  <target name="prepare-src"
955 <          depends="configure-compiler"
956 <          if="prepare.src.dir">
954 >  <target name="extra166ydist"
955 >          depends="extra166ydist-jar, extra166ydist-docs"
956 >          description="Puts all distributable products in single hierarchy"/>
957  
958 <    <mkdir dir="${prepare.src.dir}"/>
959 <    <copy todir="${prepare.src.dir}">
960 <      <fileset dir="${src.dir}">
961 <        <exclude name="java/lang/**"/>
962 <      </fileset>
552 <    </copy>
958 >
959 >  <target name="extra166yclean"
960 >          description="Removes all extra166y build products">
961 >
962 >    <delete dir="${build.extra166y.dir}"/>
963  
964    </target>
965  
966  
967 <  <target name="configure-tests"
968 <       depends="configure-compiler">
967 >  <target name="extra166ydist-clean"
968 >          description="Removes all build and distribution products">
969  
970 <    <!-- junit.framework.Protectable is in JUnit 3.8.1 but not in 3.7 -->
561 <    <available property="junit.available"
562 <               classname="junit.framework.Protectable"/>
970 >  </target>
971  
972 <    <fail message="Need JUnit 3.8.1 in ${ant.home}${file.separator}lib to run tests"
973 <          unless="junit.available"/>
972 >  <target name="extra166ydist-jar"
973 >          depends="extra166yclean, extra166y-jar">
974 >    <copy file="${extra166y.jar}" todir="${dist.dir}"/>
975 >  </target>
976  
977 <    <!-- Xalan -->
978 <    <available property="xalan.available"
979 <               classname="org.apache.xalan.Version"/>
977 >  <target name="extra166ydist-docs"
978 >          depends="extra166yclean, extra166ydocs">
979 >    <mirror-dir src="${extra166ydocs.dir}" dst="${dist.extra166ydocs.dir}"/>
980 >  </target>
981  
982 <    <fail message="Need Xalan 2.5.1 jar in ${ant.home}${file.separator}lib to run tests"
983 <          unless="xalan.available"/>
982 >  <!-- jsr166e -->
983 >
984 >  <target name="jsr166ecompile"
985 >          depends="configure-compiler"
986 >          description="Compiles jsr166e sources">
987  
988 +    <mkdir dir="${build.jsr166e.classes.dir}"/>
989  
990 <    <!--
991 <     ! Bootclasspath munging for testing, so JUnit can test our local
992 <     ! modifications to java.*.
993 <     -->
994 <
995 <    <path id="test.classpath">
996 <      <pathelement location="${product.jar}"/>
997 <      <pathelement location="${rt.jar}"/>
998 <      <pathelement location="${junit.jar}"/>
999 <      <pathelement location="${build.testcases.dir}"/>
1000 <    </path>
990 >    <javac srcdir="${topsrc.dir}"
991 >           destdir="${build.jsr166e.classes.dir}"
992 >           debug="${build.debug}"
993 >           debuglevel="${build.debuglevel}"
994 >           deprecation="${build.deprecation}"
995 >           source="7"
996 >           classpath=""
997 >           includeAntRuntime="false"
998 >           includeJavaRuntime="false"
999 >           executable="${javac7}"
1000 >           fork="true">
1001 >
1002 >      <include name="jsr166e/**/*.java"/>
1003 >      <compilerarg value="-XDignore.symbol.file=true"/>
1004 >      <compilerarg value="-Xlint:all"/>
1005 >      <compilerarg line="${build.args}"/>
1006  
1007 <    <path id="test.bootclasspath">
1008 <      <path refid="test.classpath"/>
1009 <    </path>
1007 >    </javac>
1008 >  </target>
1009 >
1010 >
1011 >  <target name="jsr166e-jar"
1012 >          depends="jsr166ecompile"
1013 >          description="Builds library jar from compiled sources">
1014  
1015 <    <!-- Flatten test classpaths into platform-appropriate strings -->
1016 <    <property name="test.classpath"         refid="test.classpath"/>
1017 <    <property name="test.bootclasspath"     refid="test.bootclasspath"/>
1015 >    <jar destfile="${jsr166e.jar}" index="true">
1016 >      <fileset dir="${build.jsr166e.classes.dir}"/>
1017 >    </jar>
1018  
1019    </target>
1020  
1021  
1022 +  <target name="jsr166edocs"
1023 +          description="Builds javadocs to build dir">
1024  
1025 <  <!-- Anthill targets -->
1026 <
601 <  <target name="anthill-build">
602 <  
603 <    <!-- Override this in user.properties -->
604 <    <property name="tiger.home" location="e:/j2sdk1.5.0"/>
605 <    
606 <    <exec resultproperty="result.property" dir="${basedir}" executable="${tiger.home}/bin/java">
607 <      <arg value="-Xmx256000000"/>
608 <      <!-- classpath of new JVM -->
609 <      <arg value="-classpath"/> <arg path="${java.class.path}"/>
610 <      <!-- location of Ant home directory -->
611 <      <arg value="-Dant.home=${ant.home}"/>
612 <      <!-- the Ant main class -->
613 <      <arg value="org.apache.tools.ant.Main"/>
614 <      <!-- The build file -->
615 <      <arg value="-buildfile"/>  <arg value="build.xml"/>
616 <      <!-- the target to build on the new Ant instance -->
617 <      <arg value="-DJAVA_HOME=${tiger.home}"/>
618 <      <arg value="do-anthill-build"/>
619 <    </exec>
620 <  </target>
621 <  
622 <  <target name="do-anthill-build"
623 <          depends="jar, test, docs, dist-docs"/>
1025 >    <delete dir="${jsr166edocs.dir}"/>
1026 >    <mkdir dir="${jsr166edocs.dir}"/>
1027  
1028 <  <target name="anthill-publish">
1028 >    <javadoc destdir="${jsr166edocs.dir}"
1029 >             packagenames="jsr166e.*"
1030 >             link="${jdkapidocs.url}"
1031 >             sourcepath="${topsrc.dir}:${jdk7src.dir}"
1032 >             source="7"
1033 >             executable="${javadoc7}">
1034 >      <arg value="-XDignore.symbol.file=true"/>
1035  
1036 <    <copy todir="${deployDir}/docs/private">
1037 <      <fileset dir="${build.javadocs.dir}"/>
629 <    </copy>
1036 >    </javadoc>
1037 >  </target>
1038  
631    <copy todir="${deployDir}/docs/public">
632      <fileset dir="${dist.javadocs.dir}"/>
633    </copy>
1039  
1040 <    <copy tofile="${deployDir}/index.html"
1041 <          file="${basedir}/etc/anthill-index.html"/>
1040 >  <target name="jsr166e-test-tck"
1041 >          depends="jsr166e-jar"
1042 >          description="Runs tck tests for jsr166e">
1043 >
1044 >    <run-tck-tests
1045 >      tck.src.dir="${test.src.dir}/tck-jsr166e"
1046 >      source="7"
1047 >      target="8"
1048 >      workdir="${build.jsr166e.dir}"
1049 >      classes="${jsr166e.jar}"/>
1050 >  </target>
1051 >
1052 >
1053 >  <target name="jsr166edist"
1054 >          depends="jsr166edist-jar, jsr166edist-docs"
1055 >          description="Puts all distributable products in single hierarchy"/>
1056  
638    <copy todir="${deployDir}/notes">
639      <fileset dir="${basedir}/etc/notes"/>
640    </copy>
1057  
1058 +  <target name="jsr166eclean"
1059 +          description="Removes all jsr166e build products">
1060 +    <delete dir="${build.jsr166e.dir}"/>
1061    </target>
1062  
1063  
1064 <  <target name="ng" depends="test">
1065 <    <java classname="SuperfluousAbstract" fork="true">
1064 >  <target name="jsr166edist-clean"
1065 >          description="Removes all build and distribution products">
1066  
1067 <      <jvmarg value="-Xbootclasspath/p:${test.bootclasspath}"/>
1067 >  </target>
1068  
1069 <    </java>
1069 >  <target name="jsr166edist-jar"
1070 >          depends="jsr166eclean, jsr166e-jar">
1071 >    <copy file="${jsr166e.jar}" todir="${dist.dir}"/>
1072    </target>
1073  
1074 +  <target name="jsr166edist-docs"
1075 +          depends="jsr166eclean, jsr166edocs">
1076 +    <mirror-dir src="${jsr166edocs.dir}" dst="${dist.jsr166edocs.dir}"/>
1077 +  </target>
1078  
1079   </project>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines