ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/build.xml
Revision: 1.54
Committed: Mon Sep 1 04:09:57 2003 UTC (20 years, 8 months ago) by tim
Content type: text/xml
Branch: MAIN
Changes since 1.53: +57 -13 lines
Log Message:
Build file now assumes Tiger build, no longer uses EA releases from lib.
Anthill target execs self with JAVA_HOME set to tiger.home.

File Contents

# User Rev Content
1 tim 1.18 <project name="jsr166" default="usage">
2 tim 1.1
3     <description>
4 tim 1.29 ------------------------------------------------------------------------------
5     Build file for JSR-166
6 tim 1.18
7 tim 1.29 Usage: ant [target]
8    
9     User-specific settings are read from user.properties.
10 tim 1.32 See user.properties.sample for an explanation of some useful settings.
11 tim 1.29 ------------------------------------------------------------------------------
12 tim 1.18 </description>
13 tim 1.11
14 tim 1.29 <target name="usage" description="Advises user to run with -projecthelp">
15     <echo>Run "ant -projecthelp" for full usage information.</echo>
16     </target>
17 tim 1.3
18 tim 1.11
19 tim 1.27 <!-- User-specific settings -->
20 tim 1.23 <property file="user.properties"/>
21 tim 1.27
22 tim 1.1
23     <!-- Compilation options -->
24 tim 1.11 <property name="build.sourcelevel" value="1.5"/>
25 tim 1.25 <property name="build.docsourcelevel" value="1.4"/>
26 tim 1.1 <property name="build.debug" value="true"/>
27     <property name="build.debuglevel" value="source,lines,vars"/>
28 tim 1.13 <property name="build.deprecation" value="false"/>
29 tim 1.1
30     <!-- Build locations -->
31     <property name="build.dir" location="build"/>
32     <property name="build.classes.dir" location="${build.dir}/classes"/>
33 tim 1.27 <property name="build.emulation.dir" location="${build.dir}/emulation"/>
34 tim 1.1 <property name="build.testcases.dir" location="${build.dir}/testcases"/>
35     <property name="build.lib.dir" location="${build.dir}/lib"/>
36     <property name="build.ant.dir" location="${build.dir}/ant"/>
37 tim 1.9 <property name="build.javadocs.dir" location="${build.dir}/javadocs"/>
38 tim 1.52 <property name="build.sinjdocs.dir" location="${build.dir}/sinjdocs"/>
39 tim 1.16 <property name="build.stripped.dir" location="${build.dir}/stripped"/>
40 tim 1.1 <property name="build.reports.dir" location="${build.dir}/reports"/>
41 tim 1.16 <property name="build.doccheck.dir" location="${build.dir}/doccheck"/>
42 tim 1.1 <property name="build.filter.src.dir" location="${build.dir}/filtersrc"/>
43 tim 1.47 <property name="build.filter.doccheck.dir" location="${build.dir}/filterdocchk"/>
44 tim 1.1
45     <!-- Source locations -->
46 tim 1.22 <property name="src.dir" location="${basedir}/src/main"/>
47 tim 1.27 <property name="emulation.src.dir" location="${basedir}/src/emulation"/>
48 tim 1.22 <property name="test.src.dir" location="${basedir}/src/test"/>
49 tim 1.1 <property name="ant.src.dir" location="${basedir}/etc/ant"/>
50     <property name="stylesheet.dir" location="${basedir}/etc/xsl"/>
51     <property name="lib.dir" location="${basedir}/lib"/>
52 tim 1.9 <property name="dist.dir" location="${basedir}/dist"/>
53    
54     <!-- Distribution locations -->
55     <property name="dist.javadocs.dir" location="${dist.dir}/docs"/>
56 tim 1.1
57     <!-- Jar locations -->
58     <property name="product.jar" location="${build.lib.dir}/jsr166.jar"/>
59     <property name="junit.jar" location="${lib.dir}/junit.jar"/>
60     <property name="rt.jar" location="${java.home}/lib/rt.jar"/>
61 tim 1.49 <property name="sinjdoc.jar" location="${lib.dir}/sinjdoc.jar"/>
62 tim 1.27
63 tim 1.28
64 tim 1.40 <!-- Files excluded from dist-docs and emulation jar -->
65     <patternset id="unsafe.exclusion">
66 tim 1.28 <exclude name="java/util/Random.*"/>
67     <exclude name="sun/misc/Unsafe.*"/>
68     </patternset>
69    
70 tim 1.40 <!-- Files excludes from emulation jar -->
71     <patternset id="atomic.exclusion">
72 tim 1.41 <exclude name="java/util/concurrent/atomic/AtomicBoolean*"/>
73 tim 1.40 <exclude name="java/util/concurrent/atomic/AtomicInteger*"/>
74     <exclude name="java/util/concurrent/atomic/AtomicLong*"/>
75     <exclude name="java/util/concurrent/atomic/AtomicReference*"/>
76 tim 1.50 <exclude name="java/util/concurrent/locks/LockSupport*"/>
77     <exclude name="java/util/concurrent/locks/ReentrantLock*"/>
78 tim 1.40 </patternset>
79    
80 tim 1.28
81    
82 tim 1.11 <!-- Main targets -->
83    
84 tim 1.28 <target name="compile"
85 tim 1.33 depends="init, configure-compiler, prepare-src"
86 tim 1.27 description="Compiles main sources to build folder">
87    
88 tim 1.33 <property name="prepare.src.dir" value="${src.dir}"/>
89    
90 tim 1.1 <mkdir dir="${build.classes.dir}"/>
91 tim 1.27
92 tim 1.37 <!--
93     <echo>javac ${gjc.args}</echo>
94     <echo>bootclasspath=${compile.bootclasspath}</echo>
95     -->
96    
97 tim 1.33 <javac srcdir="${prepare.src.dir}"
98 tim 1.1 destdir="${build.classes.dir}"
99     debug="${build.debug}"
100     debuglevel="${build.debuglevel}"
101     deprecation="${build.deprecation}"
102     source="${build.sourcelevel}"
103     fork="true">
104    
105 tim 1.54 <compilerarg line="${gjc.args}"/>
106 dl 1.53 <!--
107 tim 1.37 <bootclasspath refid="compile.bootclasspath"/>
108 dl 1.53 -->
109 tim 1.1
110     </javac>
111 tim 1.27
112 tim 1.1 </target>
113    
114    
115 tim 1.28 <target name="jar"
116 tim 1.32 depends="configure-emulation, init-jar, native-jar, emulation-jar"
117 tim 1.28 description="Builds library jar from compiled sources"/>
118 tim 1.1
119    
120 tim 1.28 <target name="test"
121 tim 1.32 depends="init, configure-tests, report-tests"
122 tim 1.29 description="Runs all tests (requires JUnit 3.8.1 in ${ant.home}/lib)" />
123 tim 1.1
124    
125 tim 1.28 <target name="checkstyle"
126     depends="filter-src"
127 tim 1.18 description="Reports on style errors in Java source (verbose, mostly chaff)">
128 tim 1.27
129 tim 1.15 <taskdef resource="checkstyletask.properties"
130     classpath="${lib.dir}/checkstyle-all-2.4.jar"/>
131    
132     <checkstyle>
133 tim 1.16 <formatter type="plain"/> <!-- also available: type="xml" -->
134 tim 1.15 <fileset dir="${build.filter.src.dir}" includes="**/*.java"/>
135     </checkstyle>
136 tim 1.27
137 tim 1.15 </target>
138    
139 tim 1.16
140 tim 1.28 <target name="doccheck"
141 tim 1.47 depends="filter-doccheck"
142     description="Reports on javadoc style errors">
143 tim 1.27
144 tim 1.16 <delete dir="${build.doccheck.dir}"/>
145     <mkdir dir="${build.doccheck.dir}"/>
146 tim 1.27
147 tim 1.16 <javadoc doclet="com.sun.tools.doclets.doccheck.DocCheck"
148     docletpath="${lib.dir}/doccheck.jar"
149     destdir="${build.doccheck.dir}">
150 tim 1.47 <packageset dir="${build.filter.doccheck.dir}"/>
151 tim 1.16 </javadoc>
152 tim 1.27
153 tim 1.48 <echo>DocCheck output is in ${build.doccheck.dir}</echo>
154    
155 tim 1.16 </target>
156    
157    
158 tim 1.28 <target name="docs"
159     depends="filter-src"
160 tim 1.9 description="Builds javadocs with custom tags to build folder">
161 tim 1.27
162 tim 1.9 <delete dir="${build.javadocs.dir}"/>
163     <mkdir dir="${build.javadocs.dir}"/>
164 tim 1.27
165 tim 1.9 <javadoc destdir="${build.javadocs.dir}"
166 tim 1.8 link="http://java.sun.com/j2se/1.4.1/docs/api"
167     overview="${src.dir}/intro.html"
168 dholmes 1.24 source="${build.docsourcelevel}">
169 tim 1.8
170 tim 1.9 <tag name="revised" description="Last revised:"/>
171 tim 1.29 <tag name="spec" description="Specified by:"/>
172     <tag name="editor" description="Last edited by:"/>
173     <tag name="fixme" description="FIX ME:"/>
174    
175 tim 1.22 <packageset dir="${build.filter.src.dir}"/>
176 tim 1.8
177     </javadoc>
178 tim 1.49
179     </target>
180    
181    
182     <target name="sinjdocs"
183     depends="configure-tests"
184     description="Builds javadocs with custom tags to build folder">
185    
186 tim 1.52 <delete dir="${build.sinjdocs.dir}"/>
187     <mkdir dir="${build.sinjdocs.dir}"/>
188 tim 1.49
189     <java classname="net.cscott.sinjdoc.Main" fork="true">
190    
191     <jvmarg value="-Xbootclasspath/p:${test.run.bootclasspath}"/>
192    
193     <classpath>
194     <pathelement location="${sinjdoc.jar}"/>
195 tim 1.51 <pathelement location="${lib.dir}/jutil.jar"/>
196     <pathelement location="${lib.dir}/cup.jar"/>
197 tim 1.49 <path refid="test.classpath"/>
198     </classpath>
199    
200    
201 tim 1.52 <arg value="-d"/> <arg value="${build.sinjdocs.dir}"/>
202 tim 1.49 <arg value="-sourcepath"/> <arg value="${src.dir}"/>
203     <arg value="-overview"/> <arg value="${src.dir}/intro.html"/>
204 tim 1.51 <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 tim 1.49 <arg value="java.util"/>
209 tim 1.51 <arg value="java.util.concurrent"/>
210     <arg value="java.util.concurrent.atomic"/>
211     <arg value="java.util.concurrent.locks"/>
212 tim 1.49
213     <!--
214     <arg value="-help"/>
215     -->
216    
217     </java>
218 tim 1.27
219 tim 1.8 </target>
220    
221    
222 tim 1.28 <target name="strip"
223 tim 1.32 depends="init, configure-compiler"
224 tim 1.31 description="Strip generics from java source (not working yet)">
225 tim 1.27
226 tim 1.16 <mkdir dir="${build.stripped.dir}"/>
227 tim 1.27
228 tim 1.31 <!--
229     # 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 tim 1.16 <javac srcdir="${src.dir}"
234     destdir="${build.stripped.dir}"
235     debug="${build.debug}"
236     debuglevel="${build.debuglevel}"
237     deprecation="${build.deprecation}"
238     source="${build.sourcelevel}"
239     fork="true">
240    
241 tim 1.37 <compilerarg line="${gjc.args} -s"/>
242 tim 1.54 <!--
243 tim 1.37 <bootclasspath refid="compile.bootclasspath"/>
244 tim 1.54 -->
245 tim 1.16
246     </javac>
247 tim 1.27
248 tim 1.16 </target>
249    
250    
251 tim 1.28 <target name="dist"
252     depends="init, dist-clean, dist-jar, dist-docs"
253 tim 1.16 description="Puts all distributable products in single hierarchy"/>
254 tim 1.1
255 tim 1.42 <target name="release"
256     depends="dist"
257     description="Puts entire CVS tree, plus distribution productions, in a jar">
258    
259 tim 1.46 <!--
260 dl 1.45 #keep build dir? - dl
261 tim 1.42 <delete dir="${build.dir}"/>
262 dl 1.45 -->
263 tim 1.42 <property name="release.jar" value="dist/jsr166-${version}-dist.jar"/>
264    
265     <jar basedir="${basedir}" destfile="${release.jar}">
266     <exclude name="${release.jar}"/>
267     <exclude name="user.properties"/>
268     <exclude name="etc/notes/**"/>
269 tim 1.43 <exclude name="lib/gjc/2.1/**"/>
270 tim 1.44 <exclude name="**/SyntaxTest.java"/>
271 tim 1.42 </jar>
272    
273     </target>
274 tim 1.1
275 tim 1.11 <target name="clean"
276     description="Removes all build products">
277 tim 1.27
278 tim 1.11 <delete dir="${build.dir}"/>
279     <delete dir="${build.classes.dir}"/>
280     <delete dir="${build.lib.dir}"/>
281 tim 1.27
282 tim 1.1 </target>
283    
284    
285 tim 1.11 <target name="dist-clean"
286     description="Removes all build and distribution products">
287 tim 1.27
288 tim 1.11 <delete dir="${dist.dir}"/>
289 tim 1.27
290 tim 1.9 </target>
291 tim 1.10
292    
293 tim 1.28 <target name="dist-docs"
294     depends="filter-src"
295     description="Builds javadocs without custom tags to dist folder">
296    
297     <delete dir="${dist.javadocs.dir}"/>
298     <mkdir dir="${dist.javadocs.dir}"/>
299    
300     <javadoc destdir="${dist.javadocs.dir}"
301     link="http://java.sun.com/j2se/1.4.1/docs/api"
302     overview="${src.dir}/intro.html"
303     source="${build.docsourcelevel}">
304    
305     <packageset dir="${build.filter.src.dir}"/>
306 tim 1.14
307 tim 1.28 </javadoc>
308 tim 1.14
309     </target>
310    
311    
312 tim 1.28
313 tim 1.11 <!-- Internal targets -->
314 tim 1.9
315 tim 1.16
316 tim 1.32 <target name="init">
317 tim 1.27
318 tim 1.11 <!-- Version is kept in a separate file -->
319     <loadfile property="version" srcFile="version.properties"/>
320     <echo>Building JSR-166 version ${version}</echo>
321 tim 1.54 <echo>java.home is ${java.home}</echo>
322 tim 1.27
323     </target>
324    
325    
326 tim 1.28 <target name="init-jar">
327 tim 1.27
328     <mkdir dir="${build.lib.dir}"/>
329    
330 tim 1.28 </target>
331    
332    
333     <target name="native-jar"
334 tim 1.30 depends="compile"
335     unless="build.emulation.true">
336 tim 1.28
337 tim 1.27 <jar destfile="${product.jar}">
338     <fileset dir="${build.classes.dir}"/>
339     </jar>
340    
341     </target>
342    
343    
344 tim 1.28 <target name="compile-emulation"
345 tim 1.32 depends="init, configure-compiler"
346 tim 1.30 if="build.emulation.true">
347 tim 1.27
348     <mkdir dir="${build.emulation.dir}"/>
349    
350     <javac srcdir="${emulation.src.dir}"
351     destdir="${build.emulation.dir}"
352     debug="${build.debug}"
353     debuglevel="${build.debuglevel}"
354     deprecation="${build.deprecation}"
355     source="${build.sourcelevel}"
356     fork="true">
357    
358 tim 1.37 <compilerarg line="${gjc.args}"/>
359 tim 1.54 <!--
360 tim 1.37 <bootclasspath refid="compile.bootclasspath"/>
361 tim 1.54 -->
362 tim 1.27
363     </javac>
364    
365     </target>
366    
367    
368 tim 1.28 <target name="emulation-jar"
369 tim 1.30 depends="compile-emulation"
370     if="build.emulation.true">
371 tim 1.27
372 tim 1.29
373     <jar destfile="${product.jar}" duplicate="add">
374     <fileset dir="${build.classes.dir}">
375 tim 1.40 <patternset refid="atomic.exclusion"/>
376     <patternset refid="unsafe.exclusion"/>
377 tim 1.29 </fileset>
378 tim 1.27 <fileset dir="${build.emulation.dir}"/>
379     </jar>
380    
381 tim 1.9 </target>
382    
383    
384 tim 1.28 <target name="dist-jar"
385     depends="clean, jar">
386 tim 1.27
387 tim 1.11 <copy file="${product.jar}" todir="${dist.dir}"/>
388 tim 1.27
389 tim 1.11 </target>
390    
391    
392 tim 1.28 <target name="compile-ant-filter"
393     depends="init">
394 tim 1.27
395 tim 1.1 <mkdir dir="${build.ant.dir}"/>
396 tim 1.27
397 tim 1.1 <javac srcdir="${ant.src.dir}"
398     destdir="${build.ant.dir}"
399     source="1.4"
400     />
401 tim 1.27
402 tim 1.1 </target>
403    
404    
405 tim 1.28 <target name="filter-src"
406     depends="compile-ant-filter">
407 tim 1.27
408 tim 1.1 <mkdir dir="${build.filter.src.dir}"/>
409 tim 1.27
410 tim 1.1 <copy todir="${build.filter.src.dir}">
411     <fileset dir="${src.dir}">
412 tim 1.31 <include name="**/*.html"/>
413     </fileset>
414     </copy>
415    
416     <copy todir="${build.filter.src.dir}">
417     <fileset dir="${src.dir}">
418     <exclude name="**/*.html"/>
419 tim 1.40 <patternset refid="unsafe.exclusion"/>
420 tim 1.1 </fileset>
421     <filterchain>
422 tim 1.36
423     <!--
424     # 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     -->
434    
435 tim 1.1 <filterreader classname="jsr166.ant.filters.ReplaceFilter"
436     classpath="${build.ant.dir}">
437     <param name="notmatching" value="^\s+\*\s.*$"/>
438 tim 1.36 <param name="pattern" value="&lt;[^|>()]+?>+"/>
439 tim 1.1 <param name="replacement" value=" "/>
440     </filterreader>
441 tim 1.36
442    
443     <!--
444     # This filter uncomments lines beginning with "//@" so that
445     # javadoc can see imports that are needed to resolve links
446     # but that shouldn't be in the compiled code.
447     -->
448    
449 tim 1.1 <filterreader classname="jsr166.ant.filters.ReplaceFilter"
450     classpath="${build.ant.dir}">
451 tim 1.36 <param name="matching" value="^//@.*$"/>
452     <param name="pattern" value="^//@"/>
453 tim 1.1 <param name="replacement" value=""/>
454     </filterreader>
455 tim 1.47 </filterchain>
456     </copy>
457    
458     </target>
459    
460    
461    
462    
463     <target name="filter-doccheck"
464     depends="filter-src">
465 tim 1.36
466 tim 1.47 <mkdir dir="${build.filter.doccheck.dir}"/>
467 tim 1.36
468 tim 1.47 <copy todir="${build.filter.doccheck.dir}">
469     <fileset dir="${build.filter.src.dir}">
470     <include name="**/*.html"/>
471     </fileset>
472     </copy>
473    
474     <property name="generic.declarations"
475     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 {}"
476     />
477    
478     <copy todir="${build.filter.doccheck.dir}">
479     <fileset dir="${build.filter.src.dir}">
480     <exclude name="**/*.html"/>
481     </fileset>
482     <filterchain>
483 tim 1.36 <!--
484 tim 1.47 # These two filters try to make the source look like
485 tim 1.36 # 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 tim 1.47 <param name="matching" value="^([^*]*(class|interface|implements) .*|)\{.*$"/>
501 tim 1.36 <param name="pattern" value="$"/>
502     <param name="replacement" value=" ${generic.declarations}"/>
503     </filterreader>
504    
505 tim 1.1 </filterchain>
506     </copy>
507 tim 1.27
508 tim 1.1 </target>
509    
510    
511 tim 1.28 <target name="compile-tests"
512     depends="jar">
513 tim 1.27
514 tim 1.1 <mkdir dir="${build.testcases.dir}"/>
515 tim 1.27
516 tim 1.37 <!--
517     <echo>javac ${gjc.args}</echo>
518     <echo>bootclasspath=${test.compile.bootclasspath}</echo>
519     <echo>classpath="${test.classpath}"</echo>
520     -->
521    
522 tim 1.1 <javac srcdir="${test.src.dir}"
523     destdir="${build.testcases.dir}"
524     debug="${build.debug}"
525     debuglevel="${build.debuglevel}"
526     deprecation="${build.deprecation}"
527     source="${build.sourcelevel}"
528     fork="true">
529    
530 tim 1.37 <compilerarg line="${gjc.args}"/>
531 tim 1.54 <!--
532 tim 1.37 <bootclasspath refid="test.compile.bootclasspath"/>
533 tim 1.54 -->
534 tim 1.37 <classpath refid="test.classpath"/>
535 tim 1.54
536     <include name="java/**"/>
537     <include name="jsr166/**"/>
538 tim 1.1
539     </javac>
540 tim 1.27
541 tim 1.1 </target>
542 tim 1.11
543 tim 1.1
544 tim 1.28 <target name="run-tests"
545     depends="compile-tests">
546 tim 1.27
547     <!-- May be overridden by user.properties -->
548     <property name="testcase" value="*"/>
549    
550 tim 1.1 <mkdir dir="${build.reports.dir}"/>
551 tim 1.27
552 tim 1.1 <junit printsummary="true"
553     showoutput="true"
554     errorProperty="junit.failed"
555     failureProperty="junit.failed"
556 tim 1.12 dir="${build.reports.dir}"
557     fork="true">
558    
559 tim 1.54 <jvmarg value="-Xbootclasspath:${test.run.bootclasspath}"/>
560 tim 1.1
561     <formatter type="xml"/>
562    
563     <batchtest todir="${build.reports.dir}">
564     <fileset dir="${test.src.dir}">
565 tim 1.54 <include name="java/**/${testcase}Test.java"/>
566     <include name="jsr166/**/${testcase}Test.java"/>
567 tim 1.1 </fileset>
568     </batchtest>
569    
570     </junit>
571 tim 1.27
572 tim 1.1 </target>
573    
574    
575 tim 1.28 <target name="report-tests"
576     depends="run-tests">
577    
578 tim 1.54 <!-- Sets junit.report.format to frames if redirection is present,
579 tim 1.1 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"/>
585    
586     <junitreport todir="${build.reports.dir}">
587     <fileset dir="${build.reports.dir}">
588     <include name="TEST-*.xml"/>
589     </fileset>
590     <report styledir="${stylesheet.dir}"
591     format="${junit.report.format}"
592     todir="${build.reports.dir}"
593     />
594     </junitreport>
595    
596     <fail message="Test Cases Failed" if="junit.failed"/>
597 tim 1.28
598 tim 1.18 </target>
599    
600    
601 tim 1.32 <target name="configure-compiler">
602 tim 1.54
603 tim 1.32 <property name="gjc.version"
604 tim 1.46 value="2.2"/>
605 tim 1.32
606 tim 1.37 <condition property="novariance.arg" value="-novariance">
607 tim 1.32 <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>
615    
616 tim 1.37 <property name="novariance.arg"
617 tim 1.32 value=""/>
618    
619     <property name="gjc.dir"
620     value="${lib.dir}/gjc"/>
621    
622     <property name="javac.jar"
623     location="${gjc.dir}/${gjc.version}/javac.jar"/>
624    
625     <property name="collect.jar"
626 tim 1.37 location="${gjc.dir}/${gjc.version}/collect${novariance.arg}.jar"/>
627 tim 1.32
628 tim 1.54 <!--
629     <property name="unchecked.option" value="-warnunchecked"/>
630 dl 1.53 -->
631 tim 1.54
632     <property name="unchecked.option" value="-Xlint:unchecked"/>
633    
634     <condition property="warnunchecked.arg" value="${unchecked.option}">
635 tim 1.32 <istrue value="${gjc.warnunchecked}"/>
636     </condition>
637    
638 tim 1.37 <property name="warnunchecked.arg" value=""/>
639 tim 1.54
640 tim 1.34 <condition property="prepare.src.dir" value="${build.dir}/prepare-src">
641 tim 1.35 <istrue value="${build.nothreads}"/>
642 tim 1.34 </condition>
643    
644 tim 1.32
645     <!--
646     ! Bootclasspath munging for source compilation.
647     -->
648    
649 tim 1.37 <path id="pre.bootclasspath">
650 tim 1.54 <!--
651 tim 1.32 <pathelement location="${javac.jar}"/>
652 tim 1.54 -->
653 tim 1.32 </path>
654    
655 tim 1.37 <path id="compile.bootclasspath">
656 tim 1.39 <pathelement location="${build.classes.dir}"/>
657 tim 1.54 <!--
658 tim 1.32 <pathelement location="${collect.jar}"/>
659 tim 1.54 -->
660 tim 1.32 <pathelement location="${rt.jar}"/>
661     </path>
662    
663 tim 1.37 <!-- Flatten paths into platform-appropriate strings -->
664     <property name="pre.bootclasspath" refid="pre.bootclasspath"/>
665     <property name="compile.bootclasspath" refid="compile.bootclasspath"/>
666    
667 tim 1.32
668     <!-- Common options in javac invocations -->
669 dl 1.53 <!--
670 tim 1.37 <property name="gjc.args"
671     value="-J-Xbootclasspath/p:${pre.bootclasspath} ${warnunchecked.arg} ${novariance.arg}"
672     />
673 dl 1.53 -->
674 tim 1.54 <property name="gjc.args" value="${warnunchecked.arg} ${novariance.arg}"/>
675 tim 1.33
676     </target>
677    
678    
679     <target name="prepare-src"
680 tim 1.34 depends="configure-compiler"
681 tim 1.33 if="prepare.src.dir">
682    
683     <mkdir dir="${prepare.src.dir}"/>
684     <copy todir="${prepare.src.dir}">
685     <fileset dir="${src.dir}">
686     <exclude name="java/lang/**"/>
687     </fileset>
688     </copy>
689 tim 1.32
690     </target>
691    
692    
693     <target name="configure-emulation">
694    
695     <condition property="build.emulation.true">
696     <or>
697     <and>
698     <os family="windows"/>
699     <not>
700     <isset property="build.emulation"/>
701     </not>
702     </and>
703     <istrue value="${build.emulation}"/>
704     </or>
705     </condition>
706    
707     </target>
708    
709    
710 tim 1.37 <target name="configure-tests"
711     depends="configure-compiler">
712 tim 1.28
713     <!-- junit.framework.Protectable is in JUnit 3.8.1 but not in 3.7 -->
714 tim 1.18 <available property="junit.available"
715 tim 1.28 classname="junit.framework.Protectable"/>
716    
717     <fail message="Need JUnit 3.8.1 in ${ant.home}${file.separator}lib to run tests"
718     unless="junit.available"/>
719    
720 tim 1.54 <!-- Xalan -->
721     <available property="xalan.available"
722     classname="org.apache.xalan.Version"/>
723    
724     <fail message="Need Xalan 2.5.1 jar in ${ant.home}${file.separator}lib to run tests"
725     unless="xalan.available"/>
726    
727 tim 1.30
728 tim 1.32 <!--
729     ! Bootclasspath munging for testing, so JUnit can test our local
730     ! modifications to java.*.
731     -->
732    
733     <path id="test.classpath">
734     <pathelement location="${product.jar}"/>
735 tim 1.54 <pathelement location="${rt.jar}"/>
736 tim 1.32 <pathelement location="${build.testcases.dir}"/>
737     <pathelement location="${junit.jar}"/>
738     </path>
739    
740 tim 1.37 <path id="test.compile.bootclasspath">
741     <pathelement location="${javac.jar}"/>
742     <pathelement location="${collect.jar}"/>
743     <pathelement location="${rt.jar}"/>
744     </path>
745    
746     <path id="test.run.bootclasspath">
747 tim 1.54 <!--
748     <pathelement location="${javac.jar}"/>
749     -->
750 tim 1.37 <path refid="test.classpath"/>
751     </path>
752 tim 1.32
753 tim 1.37 <!-- Flatten test classpaths into platform-appropriate strings -->
754     <property name="test.classpath" refid="test.classpath"/>
755     <property name="test.compile.bootclasspath" refid="test.compile.bootclasspath"/>
756     <property name="test.run.bootclasspath" refid="test.run.bootclasspath"/>
757 tim 1.30
758 tim 1.28 </target>
759    
760    
761    
762     <!-- Anthill targets -->
763    
764 tim 1.54 <target name="anthill-build">
765     <exec resultproperty="result.property" dir="${basedir}" executable="${tiger.home}/bin/java">
766     <arg value="-Xmx256000000"/>
767     <!-- classpath of new JVM -->
768     <arg value="-classpath"/> <arg path="${java.class.path}"/>
769     <!-- location of Ant home directory -->
770     <arg value="-Dant.home=${ant.home}"/>
771     <!-- the Ant main class -->
772     <arg value="org.apache.tools.ant.Main"/>
773     <!-- The build file -->
774     <arg value="-buildfile"/> <arg value="build.xml"/>
775     <!-- the target to build on the new Ant instance -->
776     <arg value="-DJAVA_HOME=${tiger.home}"/>
777     <arg value="do-anthill-build"/>
778     </exec>
779     </target>
780    
781     <target name="do-anthill-build"
782 tim 1.28 depends="jar, test, docs, dist-docs"/>
783    
784     <target name="anthill-publish">
785    
786     <copy todir="${deployDir}/docs/private">
787     <fileset dir="${build.javadocs.dir}"/>
788     </copy>
789    
790     <copy todir="${deployDir}/docs/public">
791     <fileset dir="${dist.javadocs.dir}"/>
792     </copy>
793    
794     <copy tofile="${deployDir}/index.html"
795     file="${basedir}/etc/anthill-index.html"/>
796    
797     <copy todir="${deployDir}/notes">
798     <fileset dir="${basedir}/etc/notes"/>
799     </copy>
800    
801 tim 1.43 </target>
802    
803    
804     <target name="ng" depends="test">
805     <java classname="SuperfluousAbstract" fork="true">
806    
807     <jvmarg value="-Xbootclasspath/p:${test.run.bootclasspath}"/>
808    
809     </java>
810 tim 1.1 </target>
811    
812    
813     </project>