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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines