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.27 by tim, Wed May 28 00:33:17 2003 UTC vs.
Revision 1.40 by tim, Fri Jun 6 18:34:44 2003 UTC

# Line 1 | Line 1
1   <project name="jsr166" default="usage">
2  
3    <description>
4 <    Build file for JSR-166
4 > ------------------------------------------------------------------------------
5 >  Build file for JSR-166
6  
7 <    JUnit 3.8 or better must be in ${ant.home}/lib for the test target to work.
7 <  </description>
7 >  Usage: ant [target]
8  
9 +  User-specific settings are read from user.properties.
10 +  See user.properties.sample for an explanation of some useful settings.
11 + ------------------------------------------------------------------------------
12 +  </description>
13  
14 <  <target name="usage" description="Prints this message">
15 <    <echo>
12 < ant [target], where target is one of:
13 <
14 < usage       (default) Prints this message
15 < compile     Compiles all sources to build folder
16 < jar         Builds library jar from compiled sources
17 < test        Runs all tests (requires JUnit 1.8 in ${ant.home}/lib)
18 < docs        Builds javadocs with custom tags to build folder
19 < dist-docs   Builds javadocs without custom tags to dist folder
20 < dist        Puts all distributable products in single hierarchy
21 <
22 < clean       Removes all build products
23 < dist-clean  Removes all build and distribution products
24 <
25 < checkstyle  Reports on style errors in Java source (verbose, mostly chaff)
26 < doccheck    Reports on javadoc style errors (not working yet)
27 <    </echo>
14 >  <target name="usage" description="Advises user to run with -projecthelp">
15 >    <echo>Run "ant -projecthelp" for full usage information.</echo>
16    </target>
17  
18 +
19    <!-- User-specific settings -->
20    <property file="user.properties"/>
21  
33  <!-- Set build.warnings in user.properties to turn on -warnunchecked -->
34  <!-- <property name="build.warnings" value=""/> -->
35
22  
23    <!-- Compilation options -->
24    <property name="build.sourcelevel"    value="1.5"/>
# Line 68 | Line 54 | ant [target], where target is one of:
54  
55    <!-- Jar locations -->
56    <property name="product.jar"          location="${build.lib.dir}/jsr166.jar"/>
71  <property name="javac.jar"            location="${lib.dir}/javac.jar"/>
72  <property name="collect.jar"          location="${lib.dir}/collect.jar"/>
57    <property name="junit.jar"            location="${lib.dir}/junit.jar"/>
58    <property name="rt.jar"               location="${java.home}/lib/rt.jar"/>
59  
60  
77  <!--
78   ! Bootclasspath munging for source compilation.
79   -->
80
81  <path id="javac.bootclasspath.prepend">
82    <!-- <pathelement location="${src.dir}"/> -->
83    <pathelement location="${javac.jar}"/>
84  </path>
85
86  <path id="javac.bootclasspath">
87    <!-- <pathelement location="${src.dir}"/> -->
88    <pathelement location="${collect.jar}"/>
89    <pathelement location="${rt.jar}"/>
90  </path>
91
92  <!-- Flatten bootclasspath prefix into a platform-appropriate string -->
93  <property name="javac.bootclasspath.prepend" refid="javac.bootclasspath.prepend"/>
94
95  <!-- Turn the flattened bootclasspath prefix into a javac argument -->
96  <property name="javac.args" value='-J-Xbootclasspath/p:${javac.bootclasspath.prepend}'/>
97
98
99  <!--
100   ! Bootclasspath munging for testing, so JUnit can test our local
101   ! modifications to java.*.
102   -->
103
104  <path id="test.classpath">
105    <pathelement location="${product.jar}"/>
106    <pathelement location="${build.testcases.dir}"/>
107    <pathelement location="${junit.jar}"/>
108  </path>
109
110  <!-- Flatten test classpath into a platform-appropriate string -->
111  <property name="test.classpath" refid="test.classpath"/>
61  
62 <  <!-- Turn the flattened test classpath into a javac argument -->
63 <  <property name="test.javac.args" value='-Xbootclasspath/p:${test.classpath}'/>
62 >  <!-- Files excluded from dist-docs and emulation jar -->
63 >  <patternset id="unsafe.exclusion">
64 >    <exclude name="java/util/Random.*"/>
65 >    <exclude name="sun/misc/Unsafe.*"/>
66 >  </patternset>
67 >
68 >  <!-- Files excludes from emulation jar -->
69 >  <patternset id="atomic.exclusion">
70 >    <exclude name="java/util/concurrent/atomic/AtomicInteger*"/>
71 >    <exclude name="java/util/concurrent/atomic/AtomicLong*"/>
72 >    <exclude name="java/util/concurrent/atomic/AtomicReference*"/>
73 >  </patternset>
74  
75  
76  
77    <!-- Main targets -->
78  
79 <  <target name="compile" depends="init"
79 >  <target name="compile"
80 >          depends="init, configure-compiler, prepare-src"
81            description="Compiles main sources to build folder">
82  
83 +    <property name="prepare.src.dir" value="${src.dir}"/>
84 +
85      <mkdir dir="${build.classes.dir}"/>
86  
87 <    <javac srcdir="${src.dir}"
87 > <!--
88 >    <echo>javac ${gjc.args}</echo>
89 >    <echo>bootclasspath=${compile.bootclasspath}</echo>
90 > -->
91 >
92 >    <javac srcdir="${prepare.src.dir}"
93            destdir="${build.classes.dir}"
94              debug="${build.debug}"
95         debuglevel="${build.debuglevel}"
# Line 130 | Line 97 | ant [target], where target is one of:
97             source="${build.sourcelevel}"
98               fork="true">
99  
100 <      <bootclasspath refid="javac.bootclasspath"/>
101 <      <compilerarg line="${javac.args} ${build.warnings.option}"/>
100 >      <compilerarg    line="${gjc.args}"/>
101 >      <bootclasspath refid="compile.bootclasspath"/>
102  
103      </javac>
104  
105    </target>
106  
107  
108 <  <target name="jar" depends="native-jar, emulation-jar"/>
108 >  <target name="jar"
109 >          depends="configure-emulation, init-jar, native-jar, emulation-jar"
110 >          description="Builds library jar from compiled sources"/>
111  
112  
113 <  <target name="test" depends="init, check-junit, report-tests"
114 <          description="Runs all tests (requires JUnit 3.8+ in ${ant.home}/lib)"
115 <  />
113 >  <target name="test"
114 >          depends="init, configure-tests, report-tests"
115 >          description="Runs all tests (requires JUnit 3.8.1 in ${ant.home}/lib)" />
116  
117  
118 <  <target name="checkstyle" depends="filter-src"
118 >  <target name="checkstyle"
119 >          depends="filter-src"
120            description="Reports on style errors in Java source (verbose, mostly chaff)">
121  
122      <taskdef resource="checkstyletask.properties"
# Line 160 | Line 130 | ant [target], where target is one of:
130    </target>
131  
132  
133 <  <target name="doccheck" depends="filter-src"
133 >  <target name="doccheck"
134 >          depends="filter-src"
135            description="Reports on javadoc style errors (not working yet)">
136  
137      <delete dir="${build.doccheck.dir}"/>
# Line 175 | Line 146 | ant [target], where target is one of:
146    </target>
147  
148  
149 <  <target name="docs" depends="filter-src"
149 >  <target name="docs"
150 >          depends="filter-src"
151            description="Builds javadocs with custom tags to build folder">
152  
153      <delete dir="${build.javadocs.dir}"/>
# Line 187 | Line 159 | ant [target], where target is one of:
159                source="${build.docsourcelevel}">
160  
161        <tag name="revised" description="Last revised:"/>
162 <      <tag name="spec" description="Specified by:"/>
163 <      <tag name="editor" description="Last edited by:"/>
164 <      <tag name="fixme" description="FIX ME:"/>
162 >      <tag name="spec"    description="Specified by:"/>
163 >      <tag name="editor"  description="Last edited by:"/>
164 >      <tag name="fixme"   description="FIX ME:"/>
165 >
166        <packageset dir="${build.filter.src.dir}"/>
167  
168      </javadoc>
# Line 197 | Line 170 | ant [target], where target is one of:
170    </target>
171  
172  
173 <  <!--
174 <   # javac -s doesn't reliably generate compilable code. It generates
175 <   # bridge methods (marked as "synthetic") that can have identical
203 <   # signatures to existing methods except for the return value.
204 <   -->
205 <  <target name="strip" depends="init">
173 >  <target name="strip"
174 >          depends="init, configure-compiler"
175 >          description="Strip generics from java source (not working yet)">
176  
177      <mkdir dir="${build.stripped.dir}"/>
178  
179 +    <!--
180 +     # javac -s doesn't reliably generate compilable code. It generates
181 +     # bridge methods (marked as "synthetic") that can have identical
182 +     # signatures to existing methods except for the return value.
183 +     -->
184      <javac srcdir="${src.dir}"
185            destdir="${build.stripped.dir}"
186              debug="${build.debug}"
# Line 214 | Line 189 | ant [target], where target is one of:
189             source="${build.sourcelevel}"
190               fork="true">
191  
192 <      <bootclasspath refid="javac.bootclasspath"/>
193 <      <compilerarg line="${javac.args} ${build.warnings.option} -s"/>
192 >      <compilerarg    line="${gjc.args} -s"/>
193 >      <bootclasspath refid="compile.bootclasspath"/>
194  
195      </javac>
196  
197    </target>
198  
199  
200 <  <target name="dist" depends="init, dist-clean, dist-jar, dist-docs"
200 >  <target name="dist"
201 >          depends="init, dist-clean, dist-jar, dist-docs"
202            description="Puts all distributable products in single hierarchy"/>
203  
204  
# Line 244 | Line 220 | ant [target], where target is one of:
220    </target>
221  
222  
223 <  <!-- Anthill targets -->
224 <
225 <  <!-- Should really run the tests instead of just the jar target -->
250 <  <target name="anthill-build" depends="jar, test, docs, dist-docs"/>
251 <
252 <  <target name="anthill-publish">
253 <    <copy todir="${deployDir}/docs/private">
254 <      <fileset dir="${build.javadocs.dir}"/>
255 <    </copy>
256 <    <copy todir="${deployDir}/docs/public">
257 <      <fileset dir="${dist.javadocs.dir}"/>
258 <    </copy>
259 <    <copy tofile="${deployDir}/index.html"
260 <          file="${basedir}/etc/anthill-index.html"/>
261 <    <copy todir="${deployDir}/notes">
262 <      <fileset dir="${basedir}/etc/notes"/>
263 <    </copy>
264 <  </target>
223 >  <target name="dist-docs"
224 >          depends="filter-src"
225 >          description="Builds javadocs without custom tags to dist folder">
226  
227 +    <delete dir="${dist.javadocs.dir}"/>
228 +    <mkdir dir="${dist.javadocs.dir}"/>
229  
230 <  <!-- Internal targets -->
230 >    <javadoc destdir="${dist.javadocs.dir}"
231 >                link="http://java.sun.com/j2se/1.4.1/docs/api"
232 >            overview="${src.dir}/intro.html"
233 >              source="${build.docsourcelevel}">
234  
235 <  <target name="set-warnings-if" if="build.warnings">
235 >      <packageset dir="${build.filter.src.dir}"/>
236  
237 <    <property name="build.warnings.option" value="-warnunchecked"/>
237 >    </javadoc>
238  
239    </target>
240  
241  
276  <target name="set-warnings-unless" unless="build.warnings">
277
278    <property name="build.warnings.option" value=""/>
242  
243 <  </target>
243 >  <!-- Internal targets -->
244  
245  
246 <  <target name="init" depends="set-warnings-if, set-warnings-unless">
246 >  <target name="init">
247  
248      <!-- Version is kept in a separate file -->
249      <loadfile property="version" srcFile="version.properties"/>
# Line 289 | Line 252 | ant [target], where target is one of:
252    </target>
253  
254  
255 <  <target name="native-jar" depends="compile"
293 <          description="Builds library jar from compiled sources">
255 >  <target name="init-jar">
256  
257      <mkdir dir="${build.lib.dir}"/>
258  
259 +  </target>
260 +
261 +
262 +  <target name="native-jar"
263 +          depends="compile"
264 +          unless="build.emulation.true">
265 +
266      <jar destfile="${product.jar}">
267        <fileset dir="${build.classes.dir}"/>
268      </jar>
# Line 301 | Line 270 | ant [target], where target is one of:
270    </target>
271  
272  
273 <  <target name="compile-emulation" depends="init"
274 <          if="build.emulation"
275 <          description="Compiles emulation sources to build folder">
273 >  <target name="compile-emulation"
274 >          depends="init, configure-compiler"
275 >          if="build.emulation.true">
276  
277      <mkdir dir="${build.emulation.dir}"/>
278  
# Line 315 | Line 284 | ant [target], where target is one of:
284             source="${build.sourcelevel}"
285               fork="true">
286  
287 <      <bootclasspath refid="javac.bootclasspath"/>
288 <      <compilerarg line="${javac.args} ${build.warnings.option}"/>
287 >      <compilerarg    line="${gjc.args}"/>
288 >      <bootclasspath refid="compile.bootclasspath"/>
289  
290      </javac>
291  
292    </target>
293  
294  
295 <  <target name="emulation-jar" depends="native-jar, compile-emulation"
296 <          if="build.emulation">
295 >  <target name="emulation-jar"
296 >          depends="compile-emulation"
297 >          if="build.emulation.true">
298 >
299  
300 <    <jar destfile="${product.jar}" update="true" duplicate="add">
300 >    <jar destfile="${product.jar}" duplicate="add">
301 >      <fileset dir="${build.classes.dir}">
302 >        <patternset refid="atomic.exclusion"/>
303 >        <patternset refid="unsafe.exclusion"/>
304 >      </fileset>
305        <fileset dir="${build.emulation.dir}"/>
306      </jar>
307  
308    </target>
309  
310  
311 <  <target name="dist-jar" depends="clean, jar">
311 >  <target name="dist-jar"
312 >          depends="clean, jar">
313  
314      <copy file="${product.jar}" todir="${dist.dir}"/>
315  
316    </target>
317  
318  
319 <  <target name="dist-docs" depends="filter-src"
320 <          description="Builds javadocs without custom tags to dist folder">
345 <
346 <    <delete dir="${dist.javadocs.dir}"/>
347 <    <mkdir dir="${dist.javadocs.dir}"/>
348 <
349 <    <javadoc destdir="${dist.javadocs.dir}"
350 <                link="http://java.sun.com/j2se/1.4.1/docs/api"
351 <            overview="${src.dir}/intro.html"
352 <              source="${build.docsourcelevel}">
353 <
354 <      <packageset dir="${build.filter.src.dir}"/>
355 <
356 <    </javadoc>
357 <
358 <  </target>
359 <
360 <
361 <  <target name="compile-ant-filter" depends="init">
319 >  <target name="compile-ant-filter"
320 >          depends="init">
321  
322      <mkdir dir="${build.ant.dir}"/>
323  
# Line 370 | Line 329 | ant [target], where target is one of:
329    </target>
330  
331  
332 <  <target name="filter-src" depends="compile-ant-filter">
332 >  <target name="filter-src"
333 >          depends="compile-ant-filter">
334  
335      <mkdir dir="${build.filter.src.dir}"/>
336  
337      <copy todir="${build.filter.src.dir}">
338        <fileset dir="${src.dir}">
339 <        <include name="**/*.java"/>
340 <        <exclude name="**/Random.java"/>
341 <        <exclude name="**/Unsafe.java"/>
339 >        <include name="**/*.html"/>
340 >      </fileset>
341 >    </copy>
342 >
343 >    <!-- Not needed now, used for doccheck filtering:
344 >    <property name="generic.declarations"
345 >             value="public interface E {} public interface T {} public interface K {} public interface V {}"
346 >    />
347 >    -->
348 >
349 >    <copy todir="${build.filter.src.dir}">
350 >      <fileset dir="${src.dir}">
351 >        <exclude name="**/*.html"/>
352 >        <patternset refid="unsafe.exclusion"/>
353        </fileset>
354        <filterchain>
355 +
356 +        <!--
357 +         # This filter gets rid of angle-bracketed type parameters
358 +         # so that javadoc can run on the result. The following
359 +         # heuristic seems to work:
360 +         #
361 +         # For all lines not starting with space(s)-asterisk-space(s),
362 +         #   replace <something> with a space, where there may be more
363 +         #   than one right angle bracket at the end, and "something"
364 +         #   must not contain parens or pipes. (This may need some
365 +         #   tweaking.)
366 +         -->
367 +
368          <filterreader classname="jsr166.ant.filters.ReplaceFilter"
369                        classpath="${build.ant.dir}">
386          <!--
387           # These arguments are to get rid of angle-bracketed type
388           # parameters so that javadoc can run on the result. The
389           # following heuristic that seems to work:
390           #
391           # For all lines not starting with space(s)-asterisk-space(s),
392           #   replace <something> with a space, where there may be more
393           #   than one right angle bracket at the end, and "something"
394           #   must not contain parens or pipes. (This may need some
395           #   tweaking.)
396           -->
370            <param name="notmatching" value="^\s+\*\s.*$"/>
371 <          <param name="pattern" value="&lt;[^|>()]+?>+"/>
371 >          <param name="pattern"     value="&lt;[^|>()]+?>+"/>
372            <param name="replacement" value=" "/>
373          </filterreader>
374 +
375 +
376 +        <!--
377 +         # This filter uncomments lines beginning with "//@" so that
378 +         # javadoc can see imports that are needed to resolve links
379 +         # but that shouldn't be in the compiled code.
380 +         -->
381 +
382          <filterreader classname="jsr166.ant.filters.ReplaceFilter"
383                        classpath="${build.ant.dir}">
384 <          <!--
385 <           # These arguments are to uncomment lines beginning with
405 <           # "//@" so that javadoc can see imports that are needed
406 <           # to resolve links but that shouldn't be in the compiled
407 <           # code.
408 <           -->
409 <          <param name="matching" value="^//@.*$"/>
410 <          <param name="pattern" value="^//@"/>
384 >          <param name="matching"    value="^//@.*$"/>
385 >          <param name="pattern"     value="^//@"/>
386            <param name="replacement" value=""/>
387          </filterreader>
388 +
389 +
390 +        <!--
391 +         # The next two filters try to make the source look like
392 +         # something that doccheck can process. The first removes
393 +         # -source 1.4 assertions and the second adds in a bunch
394 +         # of single letter public nested marker interfaces so that
395 +         # the generic type parameters are recognized.
396 +         #
397 +         # Currently commented out because doccheck doesn't work. :-(
398 +         -->
399 +
400 +        <!--
401 +        <filterreader classname="jsr166.ant.filters.ReplaceFilter"
402 +                      classpath="${build.ant.dir}">
403 +          <param name="matching"    value="^\s*assert[\s ].*$"/>
404 +          <param name="pattern"     value="assert"/>
405 +          <param name="replacement" value="//assert"/>
406 +        </filterreader>
407 +
408 +        <filterreader classname="jsr166.ant.filters.ReplaceFilter"
409 +                      classpath="${build.ant.dir}">
410 +          <param name="matching"    value="^(.*(class|interface|implements) .*|)\{.*$"/>
411 +          <param name="pattern"     value="$"/>
412 +          <param name="replacement" value=" ${generic.declarations}"/>
413 +        </filterreader>
414 +        -->
415 +
416        </filterchain>
417      </copy>
418  
419    </target>
420  
421  
422 <  <target name="compile-tests" depends="jar">
422 >  <target name="compile-tests"
423 >          depends="jar">
424  
425      <mkdir dir="${build.testcases.dir}"/>
426  
427 + <!--
428 +    <echo>javac ${gjc.args}</echo>
429 +    <echo>bootclasspath=${test.compile.bootclasspath}</echo>
430 +    <echo>classpath="${test.classpath}"</echo>
431 + -->
432 +
433      <javac srcdir="${test.src.dir}"
434            destdir="${build.testcases.dir}"
435              debug="${build.debug}"
# Line 428 | Line 438 | ant [target], where target is one of:
438             source="${build.sourcelevel}"
439               fork="true">
440  
441 <      <bootclasspath refid="javac.bootclasspath"/>
442 <      <compilerarg line="${javac.args} ${build.warnings.option}"/>
443 <      <classpath refid="test.classpath"/>
441 >      <compilerarg    line="${gjc.args}"/>
442 >      <bootclasspath refid="test.compile.bootclasspath"/>
443 >      <classpath     refid="test.classpath"/>
444  
445      </javac>
446  
447    </target>
448  
449  
450 <  <target name="run-tests" depends="compile-tests">
450 >  <target name="run-tests"
451 >          depends="compile-tests">
452  
453      <!-- May be overridden by user.properties -->
454      <property name="testcase" value="*"/>
# Line 451 | Line 462 | ant [target], where target is one of:
462                      dir="${build.reports.dir}"
463                     fork="true">
464  
465 <      <jvmarg value="${test.javac.args}"/>
465 >      <jvmarg value="-Xbootclasspath/p:${test.run.bootclasspath}"/>
466  
467        <formatter type="xml"/>
468  
# Line 466 | Line 477 | ant [target], where target is one of:
477    </target>
478  
479  
480 <  <target name="report-tests" depends="run-tests">
480 >  <target name="report-tests"
481 >          depends="run-tests">
482 >
483      <!-- Sets junit.report.format to frames if Xalan is present,
484           otherwise sets it to noframes. -->
485      <available property="junit.report.format"
# Line 486 | Line 499 | ant [target], where target is one of:
499      </junitreport>
500  
501      <fail message="Test Cases Failed" if="junit.failed"/>
502 +
503 +  </target>
504 +
505 +
506 +  <target name="configure-compiler">
507 +
508 +    <property name="gjc.version"
509 +             value="2.0"/>
510 +
511 +    <condition property="novariance.arg" value="-novariance">
512 +      <and>
513 +        <equals arg1="${gjc.version}" arg2="2.0"/>
514 +        <or>
515 +          <not><isset property="gjc.novariance"/></not>
516 +          <istrue value="${gjc.novariance}"/>
517 +        </or>
518 +      </and>
519 +    </condition>
520 +
521 +    <property name="novariance.arg"
522 +             value=""/>
523 +
524 +    <property name="gjc.dir"
525 +             value="${lib.dir}/gjc"/>
526 +
527 +    <property name="javac.jar"
528 +          location="${gjc.dir}/${gjc.version}/javac.jar"/>
529 +
530 +    <property name="collect.jar"
531 +          location="${gjc.dir}/${gjc.version}/collect${novariance.arg}.jar"/>
532 +
533 +
534 +    <condition property="warnunchecked.arg" value="-warnunchecked">
535 +      <istrue value="${gjc.warnunchecked}"/>
536 +    </condition>
537 +
538 +    <property name="warnunchecked.arg" value=""/>
539 +
540 +    <condition property="prepare.src.dir" value="${build.dir}/prepare-src">
541 +      <istrue value="${build.nothreads}"/>
542 +    </condition>
543 +
544 +
545 +    <!--
546 +     ! Bootclasspath munging for source compilation.
547 +     -->
548 +
549 +    <path id="pre.bootclasspath">
550 +      <pathelement location="${javac.jar}"/>
551 +    </path>
552 +
553 +    <path id="compile.bootclasspath">
554 +      <pathelement location="${build.classes.dir}"/>
555 +      <pathelement location="${collect.jar}"/>
556 +      <pathelement location="${rt.jar}"/>
557 +    </path>
558 +
559 +    <!-- Flatten paths into platform-appropriate strings -->
560 +    <property name="pre.bootclasspath"     refid="pre.bootclasspath"/>
561 +    <property name="compile.bootclasspath" refid="compile.bootclasspath"/>
562 +
563 +
564 +    <!-- Common options in javac invocations -->
565 +    <property name="gjc.args"
566 +             value="-J-Xbootclasspath/p:${pre.bootclasspath} ${warnunchecked.arg} ${novariance.arg}"
567 +    />
568 +
569    </target>
570  
571  
572 <  <target name="check-junit">
573 <    <!-- FIXME: this test isn't specific enough -->
572 >  <target name="prepare-src"
573 >          depends="configure-compiler"
574 >          if="prepare.src.dir">
575 >
576 >    <mkdir dir="${prepare.src.dir}"/>
577 >    <copy todir="${prepare.src.dir}">
578 >      <fileset dir="${src.dir}">
579 >        <exclude name="java/lang/**"/>
580 >      </fileset>
581 >    </copy>
582 >
583 >  </target>
584 >
585 >
586 >  <target name="configure-emulation">
587 >
588 >    <condition property="build.emulation.true">
589 >      <or>
590 >        <and>
591 >          <os family="windows"/>
592 >          <not>
593 >            <isset property="build.emulation"/>
594 >          </not>
595 >        </and>
596 >        <istrue value="${build.emulation}"/>
597 >      </or>
598 >    </condition>
599 >
600 >  </target>
601 >
602 >
603 >  <target name="configure-tests"
604 >       depends="configure-compiler">
605 >
606 >    <!-- junit.framework.Protectable is in JUnit 3.8.1 but not in 3.7 -->
607      <available property="junit.available"
608 <               classname="junit.framework.TestCase"/>
609 <    <fail message="Need JUnit 3.8 to run tests" unless="junit.available"/>
608 >               classname="junit.framework.Protectable"/>
609 >
610 >    <fail message="Need JUnit 3.8.1 in ${ant.home}${file.separator}lib to run tests"
611 >          unless="junit.available"/>
612 >
613 >
614 >    <!--
615 >     ! Bootclasspath munging for testing, so JUnit can test our local
616 >     ! modifications to java.*.
617 >     -->
618 >
619 >    <path id="test.classpath">
620 >      <pathelement location="${product.jar}"/>
621 >      <pathelement location="${build.testcases.dir}"/>
622 >      <pathelement location="${junit.jar}"/>
623 >    </path>
624 >
625 >    <path id="test.compile.bootclasspath">
626 >      <pathelement location="${javac.jar}"/>
627 >      <pathelement location="${collect.jar}"/>
628 >      <pathelement location="${rt.jar}"/>
629 >    </path>
630 >
631 >    <path id="test.run.bootclasspath">
632 >      <pathelement location="${javac.jar}"/>
633 >      <path refid="test.classpath"/>
634 >    </path>
635 >
636 >    <!-- Flatten test classpaths into platform-appropriate strings -->
637 >    <property name="test.classpath"             refid="test.classpath"/>
638 >    <property name="test.compile.bootclasspath" refid="test.compile.bootclasspath"/>
639 >    <property name="test.run.bootclasspath"     refid="test.run.bootclasspath"/>
640 >
641 >  </target>
642 >
643 >
644 >
645 >  <!-- Anthill targets -->
646 >
647 >  <target name="anthill-build"
648 >          depends="jar, test, docs, dist-docs"/>
649 >
650 >  <target name="anthill-publish">
651 >
652 >    <copy todir="${deployDir}/docs/private">
653 >      <fileset dir="${build.javadocs.dir}"/>
654 >    </copy>
655 >
656 >    <copy todir="${deployDir}/docs/public">
657 >      <fileset dir="${dist.javadocs.dir}"/>
658 >    </copy>
659 >
660 >    <copy tofile="${deployDir}/index.html"
661 >          file="${basedir}/etc/anthill-index.html"/>
662 >
663 >    <copy todir="${deployDir}/notes">
664 >      <fileset dir="${basedir}/etc/notes"/>
665 >    </copy>
666 >
667    </target>
668  
669  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines