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.43 by tim, Thu Jun 26 11:54:26 2003 UTC vs.
Revision 1.59 by tim, Sun Dec 7 20:49:10 2003 UTC

# Line 22 | Line 22
22  
23    <!-- Compilation options -->
24    <property name="build.sourcelevel"    value="1.5"/>
25  <property name="build.docsourcelevel" value="1.4"/>
25    <property name="build.debug"          value="true"/>
26    <property name="build.debuglevel"     value="source,lines,vars"/>
27    <property name="build.deprecation"    value="false"/>
# Line 30 | Line 29
29    <!-- Build locations -->
30    <property name="build.dir"            location="build"/>
31    <property name="build.classes.dir"    location="${build.dir}/classes"/>
33  <property name="build.emulation.dir"  location="${build.dir}/emulation"/>
32    <property name="build.testcases.dir"  location="${build.dir}/testcases"/>
33    <property name="build.lib.dir"        location="${build.dir}/lib"/>
34    <property name="build.ant.dir"        location="${build.dir}/ant"/>
35    <property name="build.javadocs.dir"   location="${build.dir}/javadocs"/>
38  <property name="build.stripped.dir"   location="${build.dir}/stripped"/>
36    <property name="build.reports.dir"    location="${build.dir}/reports"/>
37 +  <property name="build.checkstyle.dir" location="${build.dir}/checkstyle"/>
38    <property name="build.doccheck.dir"   location="${build.dir}/doccheck"/>
39    <property name="build.filter.src.dir" location="${build.dir}/filtersrc"/>
40 +  <property name="build.dc-filter.dir"  location="${build.dir}/filterdocchk"/>
41  
42    <!-- Source locations -->
43    <property name="src.dir"              location="${basedir}/src/main"/>
45  <property name="emulation.src.dir"    location="${basedir}/src/emulation"/>
44    <property name="test.src.dir"         location="${basedir}/src/test"/>
45    <property name="ant.src.dir"          location="${basedir}/etc/ant"/>
46    <property name="stylesheet.dir"       location="${basedir}/etc/xsl"/>
# Line 55 | Line 53
53    <!-- Jar locations -->
54    <property name="product.jar"          location="${build.lib.dir}/jsr166.jar"/>
55    <property name="junit.jar"            location="${lib.dir}/junit.jar"/>
56 <  <property name="rt.jar"               location="${java.home}/lib/rt.jar"/>
57 <
58 <
59 <
60 <  <!-- Files excluded from dist-docs and emulation jar -->
61 <  <patternset id="unsafe.exclusion">
62 <    <exclude name="java/util/Random.*"/>
63 <    <exclude name="sun/misc/Unsafe.*"/>
64 <  </patternset>
67 <
68 <  <!-- Files excludes from emulation jar -->
69 <  <patternset id="atomic.exclusion">
70 <    <exclude name="java/util/concurrent/atomic/AtomicBoolean*"/>
71 <    <exclude name="java/util/concurrent/atomic/AtomicInteger*"/>
72 <    <exclude name="java/util/concurrent/atomic/AtomicLong*"/>
73 <    <exclude name="java/util/concurrent/atomic/AtomicReference*"/>
74 <  </patternset>
56 >  
57 >  <!-- Bootclasspath argument -->
58 >  <property name="bootclasspath.args"   value="-Xbootclasspath/p:${product.jar}"/>
59 >
60 >  <!-- Test classpath -->
61 >  <path id="test.classpath">
62 >    <pathelement location="${build.testcases.dir}"/>
63 >    <pathelement location="${junit.jar}"/>
64 >  </path>
65  
66  
67  
68    <!-- Main targets -->
69  
70 +
71    <target name="compile"
72            depends="init, configure-compiler, prepare-src"
73            description="Compiles main sources to build folder">
74  
84    <property name="prepare.src.dir" value="${src.dir}"/>
85
75      <mkdir dir="${build.classes.dir}"/>
76  
88 <!--
89    <echo>javac ${gjc.args}</echo>
90    <echo>bootclasspath=${compile.bootclasspath}</echo>
91 -->
92
77      <javac srcdir="${prepare.src.dir}"
78            destdir="${build.classes.dir}"
79              debug="${build.debug}"
# Line 98 | Line 82
82             source="${build.sourcelevel}"
83               fork="true">
84  
85 <      <compilerarg    line="${gjc.args}"/>
102 <      <bootclasspath refid="compile.bootclasspath"/>
85 >      <compilerarg line="${build.args}"/>
86  
87      </javac>
88  
89    </target>
90  
91  
109  <target name="jar"
110          depends="configure-emulation, init-jar, native-jar, emulation-jar"
111          description="Builds library jar from compiled sources"/>
112
113
114  <target name="test"
115          depends="init, configure-tests, report-tests"
116          description="Runs all tests (requires JUnit 3.8.1 in ${ant.home}/lib)" />
92  
93 +  <target name="jar"
94 +          depends="compile"
95 +          description="Builds library jar from compiled sources">
96  
97 <  <target name="checkstyle"
120 <          depends="filter-src"
121 <          description="Reports on style errors in Java source (verbose, mostly chaff)">
122 <
123 <    <taskdef resource="checkstyletask.properties"
124 <            classpath="${lib.dir}/checkstyle-all-2.4.jar"/>
97 >    <mkdir dir="${build.lib.dir}"/>
98  
99 <    <checkstyle>
100 <      <formatter type="plain"/>  <!-- also available: type="xml" -->
101 <      <fileset dir="${build.filter.src.dir}" includes="**/*.java"/>
129 <    </checkstyle>
99 >    <jar destfile="${product.jar}">
100 >      <fileset dir="${build.classes.dir}"/>
101 >    </jar>
102  
103    </target>
104  
105  
134  <target name="doccheck"
135          depends="filter-src"
136          description="Reports on javadoc style errors (not working yet)">
137
138    <delete dir="${build.doccheck.dir}"/>
139    <mkdir dir="${build.doccheck.dir}"/>
106  
107 <    <javadoc doclet="com.sun.tools.doclets.doccheck.DocCheck"
108 <         docletpath="${lib.dir}/doccheck.jar"
109 <            destdir="${build.doccheck.dir}">
144 <      <packageset dir="${build.filter.src.dir}"/>
145 <    </javadoc>
107 >  <target name="test"
108 >          depends="init, configure-tests, report-tests"
109 >          description="Runs all tests (requires JUnit 3.8.1 in ${ant.home}/lib)" />
110  
147  </target>
111  
112  
113    <target name="docs"
151          depends="filter-src"
114            description="Builds javadocs with custom tags to build folder">
115  
116      <delete dir="${build.javadocs.dir}"/>
# Line 157 | Line 119
119      <javadoc destdir="${build.javadocs.dir}"
120                  link="http://java.sun.com/j2se/1.4.1/docs/api"
121              overview="${src.dir}/intro.html"
122 <              source="${build.docsourcelevel}">
122 >              source="${build.sourcelevel}">
123  
124        <tag name="revised" description="Last revised:"/>
125        <tag name="spec"    description="Specified by:"/>
164      <tag name="editor"  description="Last edited by:"/>
165      <tag name="fixme"   description="FIX ME:"/>
126  
127 <      <packageset dir="${build.filter.src.dir}"/>
127 >      <packageset dir="${src.dir}"/>
128  
129      </javadoc>
130  
131    </target>
132  
133  
174  <target name="strip"
175          depends="init, configure-compiler"
176          description="Strip generics from java source (not working yet)">
177
178    <mkdir dir="${build.stripped.dir}"/>
179
180    <!--
181     # javac -s doesn't reliably generate compilable code. It generates
182     # bridge methods (marked as "synthetic") that can have identical
183     # signatures to existing methods except for the return value.
184     -->
185    <javac srcdir="${src.dir}"
186          destdir="${build.stripped.dir}"
187            debug="${build.debug}"
188       debuglevel="${build.debuglevel}"
189      deprecation="${build.deprecation}"
190           source="${build.sourcelevel}"
191             fork="true">
134  
135 <      <compilerarg    line="${gjc.args} -s"/>
136 <      <bootclasspath refid="compile.bootclasspath"/>
135 >  <target name="checkstyle"
136 >          depends="filter-src"
137 >          description="Reports on style errors in Java source (verbose, mostly chaff)">
138  
139 <    </javac>
139 >    <taskdef resource="checkstyletask.properties"
140 >            classpath="${lib.dir}/checkstyle-all-3.1.jar"/>
141 >
142 >    <mkdir dir="${build.checkstyle.dir}"/>
143 >    
144 >    <checkstyle config="etc/checkstyle/sun_checks.xml"
145 >       failOnViolation="false">
146 >      <formatter type="xml" toFile="${build.checkstyle.dir}/checkstyle-report.xml"/>
147 >      <fileset dir="${build.filter.src.dir}" includes="**/*.java"/>
148 >    </checkstyle>
149 >    
150 >    <style in="${build.checkstyle.dir}/checkstyle-report.xml"
151 >          out="${build.checkstyle.dir}/checkstyle-report.html"
152 >        style="${stylesheet.dir}/checkstyle-frames.xsl"/>
153 >
154 >  </target>
155 >
156 >
157 >
158 >  <target name="doccheck"
159 >          depends="filter-doccheck"
160 >          description="Reports on javadoc style errors">
161 >
162 >    <delete dir="${build.doccheck.dir}"/>
163 >    <mkdir dir="${build.doccheck.dir}"/>
164 >
165 >    <javadoc doclet="com.sun.tools.doclets.doccheck.DocCheck"
166 >         docletpath="${lib.dir}/doccheck.jar"
167 >            destdir="${build.doccheck.dir}">
168 >      <packageset dir="${build.dc-filter.dir}"/>
169 >    </javadoc>
170 >
171 >    <echo>DocCheck output is in ${build.doccheck.dir}</echo>
172  
173    </target>
174  
175 +  
176  
177    <target name="dist"
178            depends="init, dist-clean, dist-jar, dist-docs"
179            description="Puts all distributable products in single hierarchy"/>
180  
181 +
182 +
183    <target name="release"
184            depends="dist"
185            description="Puts entire CVS tree, plus distribution productions, in a jar">
186  
209    <delete dir="${build.dir}"/>
210
187      <property name="release.jar" value="dist/jsr166-${version}-dist.jar"/>
188  
189      <jar basedir="${basedir}" destfile="${release.jar}">
190 +      <!-- <exclude name="build/**"/> -->
191        <exclude name="${release.jar}"/>
192        <exclude name="user.properties"/>
193        <exclude name="etc/notes/**"/>
194 <      <exclude name="lib/gjc/2.1/**"/>
194 >      <exclude name="src/emulation/**"/>
195 >      <exclude name="**/SyntaxTest.java"/>
196 >      <exclude name="**/SuperfluousAbstract.java"/>
197      </jar>
198  
199    </target>
200  
201 +
202 +
203    <target name="clean"
204            description="Removes all build products">
205  
# Line 229 | Line 210
210    </target>
211  
212  
213 +
214    <target name="dist-clean"
215            description="Removes all build and distribution products">
216  
# Line 237 | Line 219
219    </target>
220  
221  
222 +
223    <target name="dist-docs"
241          depends="filter-src"
224            description="Builds javadocs without custom tags to dist folder">
225  
226      <delete dir="${dist.javadocs.dir}"/>
227      <mkdir dir="${dist.javadocs.dir}"/>
228  
229      <javadoc destdir="${dist.javadocs.dir}"
230 <                link="http://java.sun.com/j2se/1.4.1/docs/api"
230 >                link="http://java.sun.com/j2se/1.4.2/docs/api"
231              overview="${src.dir}/intro.html"
232 <              source="${build.docsourcelevel}">
232 >              source="${build.sourcelevel}">
233  
234 <      <packageset dir="${build.filter.src.dir}"/>
234 >      <packageset dir="${src.dir}"/>
235  
236      </javadoc>
237  
# Line 265 | Line 247
247      <!-- Version is kept in a separate file -->
248      <loadfile property="version" srcFile="version.properties"/>
249      <echo>Building JSR-166 version ${version}</echo>
250 <
269 <  </target>
270 <
271 <
272 <  <target name="init-jar">
273 <
274 <    <mkdir dir="${build.lib.dir}"/>
275 <
276 <  </target>
277 <
278 <
279 <  <target name="native-jar"
280 <          depends="compile"
281 <          unless="build.emulation.true">
282 <
283 <    <jar destfile="${product.jar}">
284 <      <fileset dir="${build.classes.dir}"/>
285 <    </jar>
286 <
287 <  </target>
288 <
289 <
290 <  <target name="compile-emulation"
291 <          depends="init, configure-compiler"
292 <          if="build.emulation.true">
293 <
294 <    <mkdir dir="${build.emulation.dir}"/>
295 <
296 <    <javac srcdir="${emulation.src.dir}"
297 <          destdir="${build.emulation.dir}"
298 <            debug="${build.debug}"
299 <       debuglevel="${build.debuglevel}"
300 <      deprecation="${build.deprecation}"
301 <           source="${build.sourcelevel}"
302 <             fork="true">
303 <
304 <      <compilerarg    line="${gjc.args}"/>
305 <      <bootclasspath refid="compile.bootclasspath"/>
306 <
307 <    </javac>
308 <
309 <  </target>
310 <
311 <
312 <  <target name="emulation-jar"
313 <          depends="compile-emulation"
314 <          if="build.emulation.true">
315 <
316 <
317 <    <jar destfile="${product.jar}" duplicate="add">
318 <      <fileset dir="${build.classes.dir}">
319 <        <patternset refid="atomic.exclusion"/>
320 <        <patternset refid="unsafe.exclusion"/>
321 <      </fileset>
322 <      <fileset dir="${build.emulation.dir}"/>
323 <    </jar>
250 >    <echo>java.home is ${java.home}</echo>
251  
252    </target>
253  
# Line 357 | Line 284
284        </fileset>
285      </copy>
286  
360    <!-- Not needed now, used for doccheck filtering:
361    <property name="generic.declarations"
362             value="public interface E {} public interface T {} public interface K {} public interface V {}"
363    />
364    -->
365
287      <copy todir="${build.filter.src.dir}">
288        <fileset dir="${src.dir}">
289          <exclude name="**/*.html"/>
290 <        <patternset refid="unsafe.exclusion"/>
290 >        <!-- Files excluded from dist-docs -->
291 >        <exclude name="java/util/Random.*"/>
292 >        <exclude name="sun/misc/Unsafe.*"/>
293        </fileset>
294 +      <!--
295        <filterchain>
296 +      -->
297  
298          <!--
299           # This filter gets rid of angle-bracketed type parameters
# Line 382 | Line 307
307           #   tweaking.)
308           -->
309  
310 +        <!--
311          <filterreader classname="jsr166.ant.filters.ReplaceFilter"
312                        classpath="${build.ant.dir}">
313            <param name="notmatching" value="^\s+\*\s.*$"/>
314            <param name="pattern"     value="&lt;[^|>()]+?>+"/>
315            <param name="replacement" value=" "/>
316          </filterreader>
317 +        -->
318  
319 +      <!--
320 +      </filterchain>
321 +      -->
322 +    </copy>
323  
324 <        <!--
394 <         # This filter uncomments lines beginning with "//@" so that
395 <         # javadoc can see imports that are needed to resolve links
396 <         # but that shouldn't be in the compiled code.
397 <         -->
324 >  </target>
325  
399        <filterreader classname="jsr166.ant.filters.ReplaceFilter"
400                      classpath="${build.ant.dir}">
401          <param name="matching"    value="^//@.*$"/>
402          <param name="pattern"     value="^//@"/>
403          <param name="replacement" value=""/>
404        </filterreader>
326  
327 +  <target name="filter-doccheck"
328 +          depends="filter-src">
329 +
330 +    <mkdir dir="${build.dc-filter.dir}"/>
331 +
332 +    <copy todir="${build.dc-filter.dir}">
333 +      <fileset dir="${build.filter.src.dir}">
334 +        <include name="**/*.html"/>
335 +      </fileset>
336 +    </copy>
337 +
338 +    <property name="generic.declarations"
339 +             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 {}"
340 +    />
341  
342 +    <copy todir="${build.dc-filter.dir}">
343 +      <fileset dir="${build.filter.src.dir}">
344 +        <exclude name="**/*.html"/>
345 +      </fileset>
346 +      <filterchain>
347          <!--
348 <         # The next two filters try to make the source look like
348 >         # These two filters try to make the source look like
349           # something that doccheck can process. The first removes
350           # -source 1.4 assertions and the second adds in a bunch
351           # of single letter public nested marker interfaces so that
352           # the generic type parameters are recognized.
413         #
414         # Currently commented out because doccheck doesn't work. :-(
353           -->
354  
417        <!--
355          <filterreader classname="jsr166.ant.filters.ReplaceFilter"
356                        classpath="${build.ant.dir}">
357            <param name="matching"    value="^\s*assert[\s ].*$"/>
# Line 424 | Line 361
361  
362          <filterreader classname="jsr166.ant.filters.ReplaceFilter"
363                        classpath="${build.ant.dir}">
364 <          <param name="matching"    value="^(.*(class|interface|implements) .*|)\{.*$"/>
364 >          <param name="matching"    value="^([^*]*(class|interface|implements) .*|)\{.*$"/>
365            <param name="pattern"     value="$"/>
366            <param name="replacement" value=" ${generic.declarations}"/>
367          </filterreader>
431        -->
368  
369        </filterchain>
370      </copy>
# Line 441 | Line 377
377  
378      <mkdir dir="${build.testcases.dir}"/>
379  
380 < <!--
445 <    <echo>javac ${gjc.args}</echo>
446 <    <echo>bootclasspath=${test.compile.bootclasspath}</echo>
447 <    <echo>classpath="${test.classpath}"</echo>
448 < -->
449 <
450 <    <javac srcdir="${test.src.dir}"
380 >    <javac srcdir="${test.src.dir}/tck"
381            destdir="${build.testcases.dir}"
382              debug="${build.debug}"
383         debuglevel="${build.debuglevel}"
# Line 455 | Line 385
385             source="${build.sourcelevel}"
386               fork="true">
387  
388 <      <compilerarg    line="${gjc.args}"/>
389 <      <bootclasspath refid="test.compile.bootclasspath"/>
390 <      <classpath     refid="test.classpath"/>
388 >      <compilerarg value="${bootclasspath.args}"/>
389 >      <compilerarg line="${build.args}"/>
390 >      
391 >      <classpath refid="test.classpath"/>
392  
393      </javac>
394  
# Line 479 | Line 410
410                      dir="${build.reports.dir}"
411                     fork="true">
412  
413 <      <jvmarg value="-Xbootclasspath/p:${test.run.bootclasspath}"/>
413 >      <jvmarg value="${bootclasspath.args}"/>
414 >      
415 >      <classpath refid="test.classpath"/>
416  
417        <formatter type="xml"/>
418  
419        <batchtest todir="${build.reports.dir}">
420 <        <fileset dir="${test.src.dir}">
421 <          <include name="**/${testcase}Test.java"/>
420 >        <fileset dir="${test.src.dir}/tck">
421 >          <include name="${testcase}Test.java"/>
422          </fileset>
423        </batchtest>
424  
# Line 497 | Line 430
430    <target name="report-tests"
431            depends="run-tests">
432  
433 <    <!-- Sets junit.report.format to frames if Xalan is present,
433 >    <!-- Sets junit.report.format to frames if redirection is present,
434           otherwise sets it to noframes. -->
435      <available property="junit.report.format"
436                    value="frames"
# Line 522 | Line 455
455  
456    <target name="configure-compiler">
457  
458 <    <property name="gjc.version"
526 <             value="2.0"/>
458 >    <property name="unchecked.option" value="-Xlint:unchecked"/>
459  
460 <    <condition property="novariance.arg" value="-novariance">
461 <      <and>
530 <        <equals arg1="${gjc.version}" arg2="2.0"/>
531 <        <or>
532 <          <not><isset property="gjc.novariance"/></not>
533 <          <istrue value="${gjc.novariance}"/>
534 <        </or>
535 <      </and>
536 <    </condition>
537 <
538 <    <property name="novariance.arg"
539 <             value=""/>
540 <
541 <    <property name="gjc.dir"
542 <             value="${lib.dir}/gjc"/>
543 <
544 <    <property name="javac.jar"
545 <          location="${gjc.dir}/${gjc.version}/javac.jar"/>
546 <
547 <    <property name="collect.jar"
548 <          location="${gjc.dir}/${gjc.version}/collect${novariance.arg}.jar"/>
549 <
550 <
551 <    <condition property="warnunchecked.arg" value="-warnunchecked">
552 <      <istrue value="${gjc.warnunchecked}"/>
460 >    <condition property="warnunchecked.arg" value="${unchecked.option}">
461 >      <istrue value="${build.warnunchecked}"/>
462      </condition>
463  
464      <property name="warnunchecked.arg" value=""/>
465 <
465 >    
466      <condition property="prepare.src.dir" value="${build.dir}/prepare-src">
467        <istrue value="${build.nothreads}"/>
468      </condition>
469 <
470 <
562 <    <!--
563 <     ! Bootclasspath munging for source compilation.
564 <     -->
565 <
566 <    <path id="pre.bootclasspath">
567 <      <pathelement location="${javac.jar}"/>
568 <    </path>
569 <
570 <    <path id="compile.bootclasspath">
571 <      <pathelement location="${build.classes.dir}"/>
572 <      <pathelement location="${collect.jar}"/>
573 <      <pathelement location="${rt.jar}"/>
574 <    </path>
575 <
576 <    <!-- Flatten paths into platform-appropriate strings -->
577 <    <property name="pre.bootclasspath"     refid="pre.bootclasspath"/>
578 <    <property name="compile.bootclasspath" refid="compile.bootclasspath"/>
469 >    
470 >    <property name="prepare.src.dir" value="${src.dir}"/>
471  
472  
473      <!-- Common options in javac invocations -->
474 <    <property name="gjc.args"
583 <             value="-J-Xbootclasspath/p:${pre.bootclasspath} ${warnunchecked.arg} ${novariance.arg}"
584 <    />
474 >    <property name="build.args" value="${warnunchecked.arg}"/>
475  
476    </target>
477  
# Line 600 | Line 490
490    </target>
491  
492  
603  <target name="configure-emulation">
604
605    <condition property="build.emulation.true">
606      <or>
607        <and>
608          <os family="windows"/>
609          <not>
610            <isset property="build.emulation"/>
611          </not>
612        </and>
613        <istrue value="${build.emulation}"/>
614      </or>
615    </condition>
616
617  </target>
618
619
493    <target name="configure-tests"
494         depends="configure-compiler">
495  
# Line 624 | Line 497
497      <available property="junit.available"
498                 classname="junit.framework.Protectable"/>
499  
500 +    <!-- Xalan -->
501 +    <available property="xalan.available"
502 +               classname="org.apache.xalan.Version"/>
503 +
504 +              
505 +    <!-- Ant 1.6beta and later don't need or want this check -->
506 +    <!--    
507      <fail message="Need JUnit 3.8.1 in ${ant.home}${file.separator}lib to run tests"
508            unless="junit.available"/>
509  
510 <
511 <    <!--
512 <     ! Bootclasspath munging for testing, so JUnit can test our local
633 <     ! modifications to java.*.
634 <     -->
635 <
636 <    <path id="test.classpath">
637 <      <pathelement location="${product.jar}"/>
638 <      <pathelement location="${build.testcases.dir}"/>
639 <      <pathelement location="${junit.jar}"/>
640 <    </path>
641 <
642 <    <path id="test.compile.bootclasspath">
643 <      <pathelement location="${javac.jar}"/>
644 <      <pathelement location="${collect.jar}"/>
645 <      <pathelement location="${rt.jar}"/>
646 <    </path>
647 <
648 <    <path id="test.run.bootclasspath">
649 <      <pathelement location="${javac.jar}"/>
650 <      <path refid="test.classpath"/>
651 <    </path>
652 <
653 <    <!-- Flatten test classpaths into platform-appropriate strings -->
654 <    <property name="test.classpath"             refid="test.classpath"/>
655 <    <property name="test.compile.bootclasspath" refid="test.compile.bootclasspath"/>
656 <    <property name="test.run.bootclasspath"     refid="test.run.bootclasspath"/>
510 >    <fail message="Need Xalan 2.5.1 jar in ${ant.home}${file.separator}lib to run tests"
511 >          unless="xalan.available"/>
512 >    -->
513  
514    </target>
515  
# Line 661 | Line 517
517  
518    <!-- Anthill targets -->
519  
520 <  <target name="anthill-build"
520 >  <target name="anthill-build">
521 >  
522 >    <!-- Override this in user.properties -->
523 >    <property name="tiger.home" location="e:/j2sdk1.5.0"/>
524 >    
525 >    <exec resultproperty="result.property" dir="${basedir}" executable="${tiger.home}/bin/java">
526 >      <arg value="-Xmx256000000"/>
527 >      <!-- classpath of new JVM -->
528 >      <arg value="-classpath"/> <arg path="${java.class.path}"/>
529 >      <!-- location of Ant home directory -->
530 >      <arg value="-Dant.home=${ant.home}"/>
531 >      <!-- the Ant main class -->
532 >      <arg value="org.apache.tools.ant.Main"/>
533 >      <!-- The build file -->
534 >      <arg value="-buildfile"/>  <arg value="build.xml"/>
535 >      <!-- the target to build on the new Ant instance -->
536 >      <arg value="-DJAVA_HOME=${tiger.home}"/>
537 >      <arg value="do-anthill-build"/>
538 >    </exec>
539 >  </target>
540 >  
541 >  <target name="do-anthill-build"
542            depends="jar, test, docs, dist-docs"/>
543  
544    <target name="anthill-publish">
# Line 684 | Line 561
561    </target>
562  
563  
687  <target name="ng" depends="test">
688    <java classname="SuperfluousAbstract" fork="true">
564  
565 <      <jvmarg value="-Xbootclasspath/p:${test.run.bootclasspath}"/>
565 >  <!-- Backward compatibility, work in progress -->
566 >
567  
568 +  <target name="compat" depends="jar">
569 +  
570 +    <mkdir dir="${build.testcases.dir}"/>
571 +    
572 +    <javac srcdir="${test.src.dir}"
573 +          destdir="${build.testcases.dir}"
574 +            debug="${build.debug}"
575 +       debuglevel="${build.debuglevel}"
576 +      deprecation="${build.deprecation}"
577 +           source="${build.sourcelevel}"
578 +             fork="true">
579 +            
580 +      <compilerarg value="${bootclasspath.args}"/>
581 +      <compilerarg line="${build.args}"/>
582 +      
583 +      <classpath refid="test.classpath"/>
584 +      
585 +      <include name="Compatibility.java"/>
586 +      
587 +    </javac>
588 +    
589 +            
590 +    <java classname="Compatibility" fork="true">
591 +      <jvmarg value="${bootclasspath.args}"/>
592 +      <classpath refid="test.classpath"/>
593      </java>
594    </target>
595  
596  
597 +
598 +  <property name="pretiger.src.dir"     location="${build.dir}/pretiger/src"/>
599 +  <property name="build.pretiger.dir"   location="${build.dir}/pretiger/classes"/>
600 +  <property name="pretiger.jar"         location="${build.lib.dir}/jsr166-pretiger.jar"/>
601 +  <property name="pretiger.sourcelevel" value="1.4"/>
602 +  
603 +  <target name="defang"
604 +       depends="init"
605 +   description="Generates pre-Tiger compatible source">
606 +  
607 +    <delete dir="${pretiger.src.dir}"/>
608 +    <mkdir dir="${pretiger.src.dir}"/>
609 +  
610 +    <exec executable="perl">
611 +      <arg file="etc/defang.pl"/>
612 +      <!-- <arg value="-v"/> -->
613 +      <arg value="-s"/> <arg file="${src.dir}"/>
614 +      <arg value="-t"/> <arg file="${pretiger.src.dir}"/>
615 +    </exec>
616 +    
617 +  </target>
618 +
619 +  <target name="compile-pretiger"
620 +          depends="init, configure-compiler, defang"
621 +          description="Compiles pre-Tiger sources to build folder">
622 +
623 +    <mkdir dir="${build.pretiger.dir}"/>
624 +
625 +    <javac srcdir="${pretiger.src.dir}"
626 +          destdir="${build.pretiger.dir}"
627 +            debug="${build.debug}"
628 +       debuglevel="${build.debuglevel}"
629 +      deprecation="${build.deprecation}"
630 +           source="${pretiger.sourcelevel}"
631 +             fork="true">
632 +
633 +      <compilerarg line="${build.args}"/>
634 +      <exclude name="**/Thread.java"/>
635 +
636 +    </javac>
637 +
638 +  </target>
639 +  
640 +  <target name="pretiger" depends="compile-pretiger">
641 +
642 +    <mkdir dir="${build.lib.dir}"/>
643 +    
644 +    <jar destfile="${pretiger.jar}">
645 +      <fileset dir="${build.pretiger.dir}">
646 +      </fileset>
647 +    </jar>
648 +    
649 +  </target>
650 +
651   </project>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines