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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines