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.34 by tim, Thu May 29 14:56:37 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 emulation and dist-docs -->
63 >  <patternset id="emulation.excludes">
64 >    <exclude name="java/util/Random.*"/>
65 >    <exclude name="sun/misc/Unsafe.*"/>
66 >  </patternset>
67  
68  
69  
70    <!-- Main targets -->
71  
72 <  <target name="compile" depends="init"
72 >  <target name="compile"
73 >          depends="init, configure-compiler, prepare-src"
74            description="Compiles main sources to build folder">
75  
76 +    <property name="prepare.src.dir" value="${src.dir}"/>
77 +
78      <mkdir dir="${build.classes.dir}"/>
79  
80 <    <javac srcdir="${src.dir}"
80 >    <javac srcdir="${prepare.src.dir}"
81            destdir="${build.classes.dir}"
82              debug="${build.debug}"
83         debuglevel="${build.debuglevel}"
# Line 131 | Line 86 | ant [target], where target is one of:
86               fork="true">
87  
88        <bootclasspath refid="javac.bootclasspath"/>
89 <      <compilerarg line="${javac.args} ${build.warnings.option}"/>
89 >      <compilerarg line="${build.javac.args}"/>
90  
91      </javac>
92  
93    </target>
94  
95  
96 <  <target name="jar" depends="native-jar, emulation-jar"/>
96 >  <target name="jar"
97 >          depends="configure-emulation, init-jar, native-jar, emulation-jar"
98 >          description="Builds library jar from compiled sources"/>
99  
100  
101 <  <target name="test" depends="init, check-junit, report-tests"
102 <          description="Runs all tests (requires JUnit 3.8+ in ${ant.home}/lib)"
103 <  />
101 >  <target name="test"
102 >          depends="init, configure-tests, report-tests"
103 >          description="Runs all tests (requires JUnit 3.8.1 in ${ant.home}/lib)" />
104  
105  
106 <  <target name="checkstyle" depends="filter-src"
106 >  <target name="checkstyle"
107 >          depends="filter-src"
108            description="Reports on style errors in Java source (verbose, mostly chaff)">
109  
110      <taskdef resource="checkstyletask.properties"
# Line 160 | Line 118 | ant [target], where target is one of:
118    </target>
119  
120  
121 <  <target name="doccheck" depends="filter-src"
121 >  <target name="doccheck"
122 >          depends="filter-src"
123            description="Reports on javadoc style errors (not working yet)">
124  
125      <delete dir="${build.doccheck.dir}"/>
# Line 175 | Line 134 | ant [target], where target is one of:
134    </target>
135  
136  
137 <  <target name="docs" depends="filter-src"
137 >  <target name="docs"
138 >          depends="filter-src"
139            description="Builds javadocs with custom tags to build folder">
140  
141      <delete dir="${build.javadocs.dir}"/>
# Line 187 | Line 147 | ant [target], where target is one of:
147                source="${build.docsourcelevel}">
148  
149        <tag name="revised" description="Last revised:"/>
150 <      <tag name="spec" description="Specified by:"/>
151 <      <tag name="editor" description="Last edited by:"/>
152 <      <tag name="fixme" description="FIX ME:"/>
150 >      <tag name="spec"    description="Specified by:"/>
151 >      <tag name="editor"  description="Last edited by:"/>
152 >      <tag name="fixme"   description="FIX ME:"/>
153 >
154        <packageset dir="${build.filter.src.dir}"/>
155  
156      </javadoc>
# Line 197 | Line 158 | ant [target], where target is one of:
158    </target>
159  
160  
161 <  <!--
162 <   # javac -s doesn't reliably generate compilable code. It generates
163 <   # 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">
161 >  <target name="strip"
162 >          depends="init, configure-compiler"
163 >          description="Strip generics from java source (not working yet)">
164  
165      <mkdir dir="${build.stripped.dir}"/>
166  
167 +    <!--
168 +     # javac -s doesn't reliably generate compilable code. It generates
169 +     # bridge methods (marked as "synthetic") that can have identical
170 +     # signatures to existing methods except for the return value.
171 +     -->
172      <javac srcdir="${src.dir}"
173            destdir="${build.stripped.dir}"
174              debug="${build.debug}"
# Line 215 | Line 178 | ant [target], where target is one of:
178               fork="true">
179  
180        <bootclasspath refid="javac.bootclasspath"/>
181 <      <compilerarg line="${javac.args} ${build.warnings.option} -s"/>
181 >      <compilerarg line="${build.javac.args} -s"/>
182  
183      </javac>
184  
185    </target>
186  
187  
188 <  <target name="dist" depends="init, dist-clean, dist-jar, dist-docs"
188 >  <target name="dist"
189 >          depends="init, dist-clean, dist-jar, dist-docs"
190            description="Puts all distributable products in single hierarchy"/>
191  
192  
# Line 244 | Line 208 | ant [target], where target is one of:
208    </target>
209  
210  
211 <  <!-- Anthill targets -->
212 <
213 <  <!-- 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>
211 >  <target name="dist-docs"
212 >          depends="filter-src"
213 >          description="Builds javadocs without custom tags to dist folder">
214  
215 +    <delete dir="${dist.javadocs.dir}"/>
216 +    <mkdir dir="${dist.javadocs.dir}"/>
217  
218 <  <!-- Internal targets -->
218 >    <javadoc destdir="${dist.javadocs.dir}"
219 >                link="http://java.sun.com/j2se/1.4.1/docs/api"
220 >            overview="${src.dir}/intro.html"
221 >              source="${build.docsourcelevel}">
222  
223 <  <target name="set-warnings-if" if="build.warnings">
223 >      <packageset dir="${build.filter.src.dir}"/>
224  
225 <    <property name="build.warnings.option" value="-warnunchecked"/>
225 >    </javadoc>
226  
227    </target>
228  
229  
276  <target name="set-warnings-unless" unless="build.warnings">
277
278    <property name="build.warnings.option" value=""/>
230  
231 <  </target>
231 >  <!-- Internal targets -->
232  
233  
234 <  <target name="init" depends="set-warnings-if, set-warnings-unless">
234 >  <target name="init">
235  
236      <!-- Version is kept in a separate file -->
237      <loadfile property="version" srcFile="version.properties"/>
# Line 289 | Line 240 | ant [target], where target is one of:
240    </target>
241  
242  
243 <  <target name="native-jar" depends="compile"
293 <          description="Builds library jar from compiled sources">
243 >  <target name="init-jar">
244  
245      <mkdir dir="${build.lib.dir}"/>
246  
247 +  </target>
248 +
249 +
250 +  <target name="native-jar"
251 +          depends="compile"
252 +          unless="build.emulation.true">
253 +
254      <jar destfile="${product.jar}">
255        <fileset dir="${build.classes.dir}"/>
256      </jar>
# Line 301 | Line 258 | ant [target], where target is one of:
258    </target>
259  
260  
261 <  <target name="compile-emulation" depends="init"
262 <          if="build.emulation"
263 <          description="Compiles emulation sources to build folder">
261 >  <target name="compile-emulation"
262 >          depends="init, configure-compiler"
263 >          if="build.emulation.true">
264  
265      <mkdir dir="${build.emulation.dir}"/>
266  
# Line 316 | Line 273 | ant [target], where target is one of:
273               fork="true">
274  
275        <bootclasspath refid="javac.bootclasspath"/>
276 <      <compilerarg line="${javac.args} ${build.warnings.option}"/>
276 >      <compilerarg line="${build.javac.args}"/>
277  
278      </javac>
279  
280    </target>
281  
282  
283 <  <target name="emulation-jar" depends="native-jar, compile-emulation"
284 <          if="build.emulation">
283 >  <target name="emulation-jar"
284 >          depends="compile-emulation"
285 >          if="build.emulation.true">
286 >
287  
288 <    <jar destfile="${product.jar}" update="true" duplicate="add">
288 >    <jar destfile="${product.jar}" duplicate="add">
289 >      <fileset dir="${build.classes.dir}">
290 >        <patternset refid="emulation.excludes"/>
291 >      </fileset>
292        <fileset dir="${build.emulation.dir}"/>
293      </jar>
294  
295    </target>
296  
297  
298 <  <target name="dist-jar" depends="clean, jar">
298 >  <target name="dist-jar"
299 >          depends="clean, jar">
300  
301      <copy file="${product.jar}" todir="${dist.dir}"/>
302  
303    </target>
304  
305  
306 <  <target name="dist-docs" depends="filter-src"
307 <          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">
306 >  <target name="compile-ant-filter"
307 >          depends="init">
308  
309      <mkdir dir="${build.ant.dir}"/>
310  
# Line 370 | Line 316 | ant [target], where target is one of:
316    </target>
317  
318  
319 <  <target name="filter-src" depends="compile-ant-filter">
319 >  <target name="filter-src"
320 >          depends="compile-ant-filter">
321  
322      <mkdir dir="${build.filter.src.dir}"/>
323  
324      <copy todir="${build.filter.src.dir}">
325        <fileset dir="${src.dir}">
326 <        <include name="**/*.java"/>
327 <        <exclude name="**/Random.java"/>
328 <        <exclude name="**/Unsafe.java"/>
326 >        <include name="**/*.html"/>
327 >      </fileset>
328 >    </copy>
329 >
330 >    <copy todir="${build.filter.src.dir}">
331 >      <fileset dir="${src.dir}">
332 >        <exclude name="**/*.html"/>
333 >        <patternset refid="emulation.excludes"/>
334        </fileset>
335        <filterchain>
336          <filterreader classname="jsr166.ant.filters.ReplaceFilter"
# Line 416 | Line 368 | ant [target], where target is one of:
368    </target>
369  
370  
371 <  <target name="compile-tests" depends="jar">
371 >  <target name="compile-tests"
372 >          depends="jar">
373  
374      <mkdir dir="${build.testcases.dir}"/>
375  
# Line 428 | Line 381 | ant [target], where target is one of:
381             source="${build.sourcelevel}"
382               fork="true">
383  
431      <bootclasspath refid="javac.bootclasspath"/>
432      <compilerarg line="${javac.args} ${build.warnings.option}"/>
384        <classpath refid="test.classpath"/>
385 +      <bootclasspath refid="javac.bootclasspath"/>
386 +      <compilerarg line="${build.javac.args}"/>
387  
388      </javac>
389  
390    </target>
391  
392  
393 <  <target name="run-tests" depends="compile-tests">
393 >  <target name="run-tests"
394 >          depends="compile-tests">
395  
396      <!-- May be overridden by user.properties -->
397      <property name="testcase" value="*"/>
# Line 451 | Line 405 | ant [target], where target is one of:
405                      dir="${build.reports.dir}"
406                     fork="true">
407  
408 <      <jvmarg value="${test.javac.args}"/>
408 >      <jvmarg value="${test.bootclasspath.arg}"/>
409  
410        <formatter type="xml"/>
411  
# Line 466 | Line 420 | ant [target], where target is one of:
420    </target>
421  
422  
423 <  <target name="report-tests" depends="run-tests">
423 >  <target name="report-tests"
424 >          depends="run-tests">
425 >
426      <!-- Sets junit.report.format to frames if Xalan is present,
427           otherwise sets it to noframes. -->
428      <available property="junit.report.format"
# Line 486 | Line 442 | ant [target], where target is one of:
442      </junitreport>
443  
444      <fail message="Test Cases Failed" if="junit.failed"/>
445 +
446    </target>
447  
448  
449 <  <target name="check-junit">
450 <    <!-- FIXME: this test isn't specific enough -->
449 >  <target name="configure-compiler">
450 >
451 >    <property name="gjc.version"
452 >             value="2.0"/>
453 >
454 >    <condition property="build.novariance" value="-novariance">
455 >      <and>
456 >        <equals arg1="${gjc.version}" arg2="2.0"/>
457 >        <or>
458 >          <not><isset property="gjc.novariance"/></not>
459 >          <istrue value="${gjc.novariance}"/>
460 >        </or>
461 >      </and>
462 >    </condition>
463 >
464 >    <property name="build.novariance"
465 >             value=""/>
466 >
467 >    <property name="gjc.dir"
468 >             value="${lib.dir}/gjc"/>
469 >
470 >    <property name="javac.jar"
471 >          location="${gjc.dir}/${gjc.version}/javac.jar"/>
472 >
473 >    <property name="collect.jar"
474 >          location="${gjc.dir}/${gjc.version}/collect${build.novariance}.jar"/>
475 >
476 >
477 >    <condition property="build.warnunchecked" value="-warnunchecked">
478 >      <istrue value="${gjc.warnunchecked}"/>
479 >    </condition>
480 >
481 >    <property name="build.warnunchecked" value=""/>
482 >
483 >    <condition property="prepare.src.dir" value="${build.dir}/prepare-src">
484 >      <or>
485 >        <and>
486 >          <not><isset property="build.nothreads"/></not>
487 >          <equals arg1="${gjc.version}" arg2="2.0"/>
488 >        </and>
489 >        <istrue value="${build.nothreads}"/>
490 >      </or>
491 >    </condition>
492 >
493 >
494 >    <!--
495 >     ! Bootclasspath munging for source compilation.
496 >     -->
497 >
498 >    <path id="javac.bootclasspath.prefix">
499 >      <!-- <pathelement location="${src.dir}"/> -->
500 >      <pathelement location="${javac.jar}"/>
501 >    </path>
502 >
503 >    <path id="javac.bootclasspath">
504 >      <!-- <pathelement location="${src.dir}"/> -->
505 >      <pathelement location="${collect.jar}"/>
506 >      <pathelement location="${rt.jar}"/>
507 >    </path>
508 >
509 >    <!-- Flatten bootclasspath prefix into a platform-appropriate string -->
510 >    <property name="javac.bootclasspath.prefix"
511 >             refid="javac.bootclasspath.prefix"/>
512 >
513 >    <!-- Turn the flattened bootclasspath prefix into a javac argument -->
514 >    <property name="build.bootclasspath.arg"
515 >             value='-J-Xbootclasspath/p:${javac.bootclasspath.prefix}'/>
516 >
517 >    <!-- Flatten bootclasspath for trace message -->
518 >    <property name="javac.bootclasspath"
519 >             refid="javac.bootclasspath"/>
520 >
521 >    <!-- Common options in javac invocations -->
522 >    <property name="build.javac.args"
523 >             value="${build.bootclasspath.arg} ${build.warnunchecked} ${build.novariance}"/>
524 >
525 >    <echo>javac ${build.javac.args}</echo>
526 >    <echo>bootclasspath=${javac.bootclasspath}</echo>
527 >
528 >  </target>
529 >
530 >
531 >  <target name="prepare-src"
532 >          depends="configure-compiler"
533 >          if="prepare.src.dir">
534 >
535 >    <mkdir dir="${prepare.src.dir}"/>
536 >    <copy todir="${prepare.src.dir}">
537 >      <fileset dir="${src.dir}">
538 >        <exclude name="java/lang/**"/>
539 >      </fileset>
540 >    </copy>
541 >
542 >  </target>
543 >
544 >
545 >  <target name="configure-emulation">
546 >
547 >    <condition property="build.emulation.true">
548 >      <or>
549 >        <and>
550 >          <os family="windows"/>
551 >          <not>
552 >            <isset property="build.emulation"/>
553 >          </not>
554 >        </and>
555 >        <istrue value="${build.emulation}"/>
556 >      </or>
557 >    </condition>
558 >
559 >  </target>
560 >
561 >
562 >  <target name="configure-tests">
563 >
564 >    <!-- junit.framework.Protectable is in JUnit 3.8.1 but not in 3.7 -->
565      <available property="junit.available"
566 <               classname="junit.framework.TestCase"/>
567 <    <fail message="Need JUnit 3.8 to run tests" unless="junit.available"/>
566 >               classname="junit.framework.Protectable"/>
567 >
568 >    <fail message="Need JUnit 3.8.1 in ${ant.home}${file.separator}lib to run tests"
569 >          unless="junit.available"/>
570 >
571 >
572 >    <!--
573 >     ! Bootclasspath munging for testing, so JUnit can test our local
574 >     ! modifications to java.*.
575 >     -->
576 >
577 >    <path id="test.classpath">
578 >      <pathelement location="${product.jar}"/>
579 >      <pathelement location="${build.testcases.dir}"/>
580 >      <pathelement location="${junit.jar}"/>
581 >    </path>
582 >
583 >    <!-- Flatten test classpath into a platform-appropriate string -->
584 >    <property name="test.classpath" refid="test.classpath"/>
585 >
586 >    <!-- Turn the flattened test classpath into a javac argument -->
587 >    <property name="test.bootclasspath.arg"
588 >             value='-Xbootclasspath/p:${test.classpath}'/>
589 >
590 >  </target>
591 >
592 >
593 >
594 >  <!-- Anthill targets -->
595 >
596 >  <target name="anthill-build"
597 >          depends="jar, test, docs, dist-docs"/>
598 >
599 >  <target name="anthill-publish">
600 >
601 >    <copy todir="${deployDir}/docs/private">
602 >      <fileset dir="${build.javadocs.dir}"/>
603 >    </copy>
604 >
605 >    <copy todir="${deployDir}/docs/public">
606 >      <fileset dir="${dist.javadocs.dir}"/>
607 >    </copy>
608 >
609 >    <copy tofile="${deployDir}/index.html"
610 >          file="${basedir}/etc/anthill-index.html"/>
611 >
612 >    <copy todir="${deployDir}/notes">
613 >      <fileset dir="${basedir}/etc/notes"/>
614 >    </copy>
615 >
616    </target>
617  
618  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines