ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/build.xml
Revision: 1.51
Committed: Thu Aug 7 03:49:48 2003 UTC (20 years, 8 months ago) by tim
Content type: text/xml
Branch: MAIN
Changes since 1.50: +9 -3 lines
Log Message:
sinjdocs target is working, sort of.

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