22 |
|
|
23 |
<!-- Compilation options --> |
<!-- Compilation options --> |
24 |
<property name="build.sourcelevel" value="1.5"/> |
<property name="build.sourcelevel" value="1.5"/> |
|
<property name="build.docsourcelevel" value="1.4"/> |
|
25 |
<property name="build.debug" value="true"/> |
<property name="build.debug" value="true"/> |
26 |
<property name="build.debuglevel" value="source,lines,vars"/> |
<property name="build.debuglevel" value="source,lines,vars"/> |
27 |
<property name="build.deprecation" value="false"/> |
<property name="build.deprecation" value="false"/> |
29 |
<!-- Build locations --> |
<!-- Build locations --> |
30 |
<property name="build.dir" location="build"/> |
<property name="build.dir" location="build"/> |
31 |
<property name="build.classes.dir" location="${build.dir}/classes"/> |
<property name="build.classes.dir" location="${build.dir}/classes"/> |
|
<property name="build.emulation.dir" location="${build.dir}/emulation"/> |
|
32 |
<property name="build.testcases.dir" location="${build.dir}/testcases"/> |
<property name="build.testcases.dir" location="${build.dir}/testcases"/> |
33 |
|
<property name="build.j1.dir" location="${build.dir}/j1"/> |
34 |
<property name="build.lib.dir" location="${build.dir}/lib"/> |
<property name="build.lib.dir" location="${build.dir}/lib"/> |
35 |
<property name="build.ant.dir" location="${build.dir}/ant"/> |
<property name="build.ant.dir" location="${build.dir}/ant"/> |
36 |
<property name="build.javadocs.dir" location="${build.dir}/javadocs"/> |
<property name="build.javadocs.dir" location="${build.dir}/javadocs"/> |
|
<property name="build.stripped.dir" location="${build.dir}/stripped"/> |
|
37 |
<property name="build.reports.dir" location="${build.dir}/reports"/> |
<property name="build.reports.dir" location="${build.dir}/reports"/> |
38 |
|
<property name="build.checkstyle.dir" location="${build.dir}/checkstyle"/> |
39 |
<property name="build.doccheck.dir" location="${build.dir}/doccheck"/> |
<property name="build.doccheck.dir" location="${build.dir}/doccheck"/> |
40 |
<property name="build.filter.src.dir" location="${build.dir}/filtersrc"/> |
<property name="build.filter.src.dir" location="${build.dir}/filtersrc"/> |
41 |
|
<property name="build.dc-filter.dir" location="${build.dir}/filterdocchk"/> |
42 |
|
|
43 |
<!-- Source locations --> |
<!-- Source locations --> |
44 |
<property name="src.dir" location="${basedir}/src/main"/> |
<property name="src.dir" location="${basedir}/src/main"/> |
|
<property name="emulation.src.dir" location="${basedir}/src/emulation"/> |
|
45 |
<property name="test.src.dir" location="${basedir}/src/test"/> |
<property name="test.src.dir" location="${basedir}/src/test"/> |
46 |
|
<property name="j1.src.dir" location="${basedir}/src/javaone"/> |
47 |
|
<property name="tck.src.dir" location="${test.src.dir}/tck"/> |
48 |
|
<property name="jtreg.src.dir" location="${test.src.dir}/jtreg"/> |
49 |
<property name="ant.src.dir" location="${basedir}/etc/ant"/> |
<property name="ant.src.dir" location="${basedir}/etc/ant"/> |
50 |
<property name="stylesheet.dir" location="${basedir}/etc/xsl"/> |
<property name="stylesheet.dir" location="${basedir}/etc/xsl"/> |
51 |
<property name="lib.dir" location="${basedir}/lib"/> |
<property name="lib.dir" location="${basedir}/lib"/> |
57 |
<!-- Jar locations --> |
<!-- Jar locations --> |
58 |
<property name="product.jar" location="${build.lib.dir}/jsr166.jar"/> |
<property name="product.jar" location="${build.lib.dir}/jsr166.jar"/> |
59 |
<property name="junit.jar" location="${lib.dir}/junit.jar"/> |
<property name="junit.jar" location="${lib.dir}/junit.jar"/> |
60 |
<property name="rt.jar" location="${java.home}/lib/rt.jar"/> |
|
61 |
|
<!-- Bootclasspath argument --> |
62 |
|
<property name="bootclasspath.args" value="-Xbootclasspath/p:${product.jar}"/> |
63 |
|
|
64 |
<!-- Files excluded from dist-docs and emulation jar --> |
<!-- Test classpath --> |
65 |
<patternset id="unsafe.exclusion"> |
<path id="test.classpath"> |
66 |
<exclude name="java/util/Random.*"/> |
<pathelement location="${build.testcases.dir}"/> |
67 |
<exclude name="sun/misc/Unsafe.*"/> |
<pathelement location="${junit.jar}"/> |
68 |
</patternset> |
</path> |
69 |
|
|
70 |
<!-- Files excludes from emulation jar --> |
<!-- Test classpath --> |
71 |
<patternset id="atomic.exclusion"> |
<path id="j1.classpath"> |
72 |
<exclude name="java/util/concurrent/atomic/AtomicBoolean*"/> |
<pathelement location="${build.j1.dir}"/> |
73 |
<exclude name="java/util/concurrent/atomic/AtomicInteger*"/> |
<pathelement location="${junit.jar}"/> |
74 |
<exclude name="java/util/concurrent/atomic/AtomicLong*"/> |
</path> |
|
<exclude name="java/util/concurrent/atomic/AtomicReference*"/> |
|
|
</patternset> |
|
|
|
|
75 |
|
|
76 |
|
|
77 |
<!-- Main targets --> |
<!-- Main targets --> |
78 |
|
|
79 |
|
|
80 |
<target name="compile" |
<target name="compile" |
81 |
depends="init, configure-compiler, prepare-src" |
depends="init, configure-compiler" |
82 |
description="Compiles main sources to build folder"> |
description="Compiles main sources to build folder"> |
83 |
|
|
|
<property name="prepare.src.dir" value="${src.dir}"/> |
|
|
|
|
84 |
<mkdir dir="${build.classes.dir}"/> |
<mkdir dir="${build.classes.dir}"/> |
85 |
|
|
86 |
<!-- |
<javac srcdir="${src.dir}" |
|
<echo>javac ${gjc.args}</echo> |
|
|
<echo>bootclasspath=${compile.bootclasspath}</echo> |
|
|
--> |
|
|
|
|
|
<javac srcdir="${prepare.src.dir}" |
|
87 |
destdir="${build.classes.dir}" |
destdir="${build.classes.dir}" |
88 |
debug="${build.debug}" |
debug="${build.debug}" |
89 |
debuglevel="${build.debuglevel}" |
debuglevel="${build.debuglevel}" |
91 |
source="${build.sourcelevel}" |
source="${build.sourcelevel}" |
92 |
fork="true"> |
fork="true"> |
93 |
|
|
94 |
<compilerarg line="${gjc.args}"/> |
<compilerarg line="${build.args}"/> |
|
<bootclasspath refid="compile.bootclasspath"/> |
|
95 |
|
|
96 |
</javac> |
</javac> |
97 |
|
|
98 |
</target> |
</target> |
99 |
|
|
100 |
|
|
|
<target name="jar" |
|
|
depends="configure-emulation, init-jar, native-jar, emulation-jar" |
|
|
description="Builds library jar from compiled sources"/> |
|
|
|
|
|
|
|
|
<target name="test" |
|
|
depends="init, configure-tests, report-tests" |
|
|
description="Runs all tests (requires JUnit 3.8.1 in ${ant.home}/lib)" /> |
|
|
|
|
101 |
|
|
102 |
<target name="checkstyle" |
<target name="jar" |
103 |
depends="filter-src" |
depends="compile" |
104 |
description="Reports on style errors in Java source (verbose, mostly chaff)"> |
description="Builds library jar from compiled sources"> |
105 |
|
|
106 |
<taskdef resource="checkstyletask.properties" |
<mkdir dir="${build.lib.dir}"/> |
|
classpath="${lib.dir}/checkstyle-all-2.4.jar"/> |
|
107 |
|
|
108 |
<checkstyle> |
<jar destfile="${product.jar}"> |
109 |
<formatter type="plain"/> <!-- also available: type="xml" --> |
<fileset dir="${build.classes.dir}"/> |
110 |
<fileset dir="${build.filter.src.dir}" includes="**/*.java"/> |
</jar> |
|
</checkstyle> |
|
111 |
|
|
112 |
</target> |
</target> |
113 |
|
|
114 |
|
|
|
<target name="doccheck" |
|
|
depends="filter-src" |
|
|
description="Reports on javadoc style errors (not working yet)"> |
|
|
|
|
|
<delete dir="${build.doccheck.dir}"/> |
|
|
<mkdir dir="${build.doccheck.dir}"/> |
|
115 |
|
|
116 |
<javadoc doclet="com.sun.tools.doclets.doccheck.DocCheck" |
<target name="test" |
117 |
docletpath="${lib.dir}/doccheck.jar" |
depends="init, configure-tests, report-tests" |
118 |
destdir="${build.doccheck.dir}"> |
description="Runs all tests (requires JUnit 3.8.1 in ${ant.home}/lib)" /> |
|
<packageset dir="${build.filter.src.dir}"/> |
|
|
</javadoc> |
|
119 |
|
|
|
</target> |
|
120 |
|
|
121 |
|
|
122 |
<target name="docs" |
<target name="docs" |
|
depends="filter-src" |
|
123 |
description="Builds javadocs with custom tags to build folder"> |
description="Builds javadocs with custom tags to build folder"> |
124 |
|
|
125 |
<delete dir="${build.javadocs.dir}"/> |
<delete dir="${build.javadocs.dir}"/> |
128 |
<javadoc destdir="${build.javadocs.dir}" |
<javadoc destdir="${build.javadocs.dir}" |
129 |
link="http://java.sun.com/j2se/1.4.1/docs/api" |
link="http://java.sun.com/j2se/1.4.1/docs/api" |
130 |
overview="${src.dir}/intro.html" |
overview="${src.dir}/intro.html" |
131 |
source="${build.docsourcelevel}"> |
source="${build.sourcelevel}"> |
132 |
|
|
133 |
<tag name="revised" description="Last revised:"/> |
<tag name="revised" description="Last revised:"/> |
134 |
<tag name="spec" description="Specified by:"/> |
<tag name="spec" description="Specified by:"/> |
|
<tag name="editor" description="Last edited by:"/> |
|
|
<tag name="fixme" description="FIX ME:"/> |
|
135 |
|
|
136 |
<packageset dir="${build.filter.src.dir}"/> |
<packageset dir="${src.dir}"/> |
137 |
|
|
138 |
</javadoc> |
</javadoc> |
139 |
|
|
140 |
</target> |
</target> |
141 |
|
|
142 |
|
|
|
<target name="strip" |
|
|
depends="init, configure-compiler" |
|
|
description="Strip generics from java source (not working yet)"> |
|
143 |
|
|
144 |
<mkdir dir="${build.stripped.dir}"/> |
<target name="doccheck" |
145 |
|
depends="filter-doccheck" |
146 |
|
description="Reports on javadoc style errors"> |
147 |
|
|
148 |
<!-- |
<delete dir="${build.doccheck.dir}"/> |
149 |
# javac -s doesn't reliably generate compilable code. It generates |
<mkdir dir="${build.doccheck.dir}"/> |
|
# bridge methods (marked as "synthetic") that can have identical |
|
|
# signatures to existing methods except for the return value. |
|
|
--> |
|
|
<javac srcdir="${src.dir}" |
|
|
destdir="${build.stripped.dir}" |
|
|
debug="${build.debug}" |
|
|
debuglevel="${build.debuglevel}" |
|
|
deprecation="${build.deprecation}" |
|
|
source="${build.sourcelevel}" |
|
|
fork="true"> |
|
150 |
|
|
151 |
<compilerarg line="${gjc.args} -s"/> |
<javadoc doclet="com.sun.tools.doclets.doccheck.DocCheck" |
152 |
<bootclasspath refid="compile.bootclasspath"/> |
docletpath="${lib.dir}/doccheck.jar" |
153 |
|
destdir="${build.doccheck.dir}"> |
154 |
|
<packageset dir="${build.dc-filter.dir}"/> |
155 |
|
</javadoc> |
156 |
|
|
157 |
</javac> |
<echo>DocCheck output is in ${build.doccheck.dir}</echo> |
158 |
|
|
159 |
</target> |
</target> |
160 |
|
|
161 |
|
|
162 |
|
|
163 |
|
<target name="checkstyle" |
164 |
|
depends="filter-src" |
165 |
|
description="Reports on style errors in Java source (verbose, mostly chaff)"> |
166 |
|
|
167 |
|
<taskdef resource="checkstyletask.properties" |
168 |
|
classpath="${lib.dir}/checkstyle-all-3.1.jar"/> |
169 |
|
|
170 |
|
<mkdir dir="${build.checkstyle.dir}"/> |
171 |
|
|
172 |
|
<checkstyle config="etc/checkstyle/sun_checks.xml" |
173 |
|
failOnViolation="false"> |
174 |
|
<formatter type="xml" toFile="${build.checkstyle.dir}/checkstyle-report.xml"/> |
175 |
|
<fileset dir="${build.filter.src.dir}" includes="**/*.java"/> |
176 |
|
</checkstyle> |
177 |
|
|
178 |
|
<style in="${build.checkstyle.dir}/checkstyle-report.xml" |
179 |
|
out="${build.checkstyle.dir}/checkstyle-report.html" |
180 |
|
style="${stylesheet.dir}/checkstyle-frames.xsl"/> |
181 |
|
|
182 |
|
</target> |
183 |
|
|
184 |
|
|
185 |
|
|
186 |
<target name="dist" |
<target name="dist" |
187 |
depends="init, dist-clean, dist-jar, dist-docs" |
depends="init, dist-clean, dist-jar, dist-docs" |
188 |
description="Puts all distributable products in single hierarchy"/> |
description="Puts all distributable products in single hierarchy"/> |
189 |
|
|
190 |
|
|
191 |
|
|
192 |
<target name="release" |
<target name="release" |
193 |
depends="dist" |
depends="dist" |
194 |
description="Puts entire CVS tree, plus distribution productions, in a jar"> |
description="Puts entire CVS tree, plus distribution productions, in a jar"> |
195 |
|
|
|
<delete dir="${build.dir}"/> |
|
|
|
|
196 |
<property name="release.jar" value="dist/jsr166-${version}-dist.jar"/> |
<property name="release.jar" value="dist/jsr166-${version}-dist.jar"/> |
197 |
|
|
198 |
<jar basedir="${basedir}" destfile="${release.jar}"> |
<jar basedir="${basedir}" destfile="${release.jar}"> |
199 |
|
<!-- <exclude name="build/**"/> --> |
200 |
<exclude name="${release.jar}"/> |
<exclude name="${release.jar}"/> |
201 |
<exclude name="user.properties"/> |
<exclude name="user.properties"/> |
202 |
<exclude name="etc/notes/**"/> |
<exclude name="etc/notes/**"/> |
203 |
<exclude name="lib/gjc/2.1/**"/> |
<exclude name="src/emulation/**"/> |
204 |
|
<exclude name="**/SyntaxTest.java"/> |
205 |
|
<exclude name="**/SuperfluousAbstract.java"/> |
206 |
</jar> |
</jar> |
207 |
|
|
208 |
</target> |
</target> |
209 |
|
|
210 |
|
|
211 |
|
|
212 |
<target name="clean" |
<target name="clean" |
213 |
description="Removes all build products"> |
description="Removes all build products"> |
214 |
|
|
219 |
</target> |
</target> |
220 |
|
|
221 |
|
|
222 |
|
|
223 |
<target name="dist-clean" |
<target name="dist-clean" |
224 |
description="Removes all build and distribution products"> |
description="Removes all build and distribution products"> |
225 |
|
|
228 |
</target> |
</target> |
229 |
|
|
230 |
|
|
231 |
|
|
232 |
<target name="dist-docs" |
<target name="dist-docs" |
|
depends="filter-src" |
|
233 |
description="Builds javadocs without custom tags to dist folder"> |
description="Builds javadocs without custom tags to dist folder"> |
234 |
|
|
235 |
<delete dir="${dist.javadocs.dir}"/> |
<delete dir="${dist.javadocs.dir}"/> |
236 |
<mkdir dir="${dist.javadocs.dir}"/> |
<mkdir dir="${dist.javadocs.dir}"/> |
237 |
|
|
238 |
<javadoc destdir="${dist.javadocs.dir}" |
<javadoc destdir="${dist.javadocs.dir}" |
239 |
link="http://java.sun.com/j2se/1.4.1/docs/api" |
link="http://java.sun.com/j2se/1.4.2/docs/api" |
240 |
overview="${src.dir}/intro.html" |
overview="${src.dir}/intro.html" |
241 |
source="${build.docsourcelevel}"> |
source="${build.sourcelevel}"> |
242 |
|
|
243 |
<packageset dir="${build.filter.src.dir}"/> |
<packageset dir="${src.dir}"/> |
244 |
|
|
245 |
</javadoc> |
</javadoc> |
246 |
|
|
256 |
<!-- Version is kept in a separate file --> |
<!-- Version is kept in a separate file --> |
257 |
<loadfile property="version" srcFile="version.properties"/> |
<loadfile property="version" srcFile="version.properties"/> |
258 |
<echo>Building JSR-166 version ${version}</echo> |
<echo>Building JSR-166 version ${version}</echo> |
259 |
|
<echo>java.home is ${java.home}</echo> |
260 |
|
|
261 |
</target> |
</target> |
262 |
|
|
263 |
|
|
|
<target name="init-jar"> |
|
|
|
|
|
<mkdir dir="${build.lib.dir}"/> |
|
|
|
|
|
</target> |
|
|
|
|
|
|
|
|
<target name="native-jar" |
|
|
depends="compile" |
|
|
unless="build.emulation.true"> |
|
|
|
|
|
<jar destfile="${product.jar}"> |
|
|
<fileset dir="${build.classes.dir}"/> |
|
|
</jar> |
|
|
|
|
|
</target> |
|
|
|
|
|
|
|
|
<target name="compile-emulation" |
|
|
depends="init, configure-compiler" |
|
|
if="build.emulation.true"> |
|
|
|
|
|
<mkdir dir="${build.emulation.dir}"/> |
|
|
|
|
|
<javac srcdir="${emulation.src.dir}" |
|
|
destdir="${build.emulation.dir}" |
|
|
debug="${build.debug}" |
|
|
debuglevel="${build.debuglevel}" |
|
|
deprecation="${build.deprecation}" |
|
|
source="${build.sourcelevel}" |
|
|
fork="true"> |
|
|
|
|
|
<compilerarg line="${gjc.args}"/> |
|
|
<bootclasspath refid="compile.bootclasspath"/> |
|
|
|
|
|
</javac> |
|
|
|
|
|
</target> |
|
|
|
|
|
|
|
|
<target name="emulation-jar" |
|
|
depends="compile-emulation" |
|
|
if="build.emulation.true"> |
|
|
|
|
|
|
|
|
<jar destfile="${product.jar}" duplicate="add"> |
|
|
<fileset dir="${build.classes.dir}"> |
|
|
<patternset refid="atomic.exclusion"/> |
|
|
<patternset refid="unsafe.exclusion"/> |
|
|
</fileset> |
|
|
<fileset dir="${build.emulation.dir}"/> |
|
|
</jar> |
|
|
|
|
|
</target> |
|
|
|
|
|
|
|
264 |
<target name="dist-jar" |
<target name="dist-jar" |
265 |
depends="clean, jar"> |
depends="clean, jar"> |
266 |
|
|
293 |
</fileset> |
</fileset> |
294 |
</copy> |
</copy> |
295 |
|
|
|
<!-- Not needed now, used for doccheck filtering: |
|
|
<property name="generic.declarations" |
|
|
value="public interface E {} public interface T {} public interface K {} public interface V {}" |
|
|
/> |
|
|
--> |
|
|
|
|
296 |
<copy todir="${build.filter.src.dir}"> |
<copy todir="${build.filter.src.dir}"> |
297 |
<fileset dir="${src.dir}"> |
<fileset dir="${src.dir}"> |
298 |
<exclude name="**/*.html"/> |
<exclude name="**/*.html"/> |
299 |
<patternset refid="unsafe.exclusion"/> |
<!-- Files excluded from dist-docs --> |
300 |
|
<exclude name="java/util/Random.*"/> |
301 |
|
<exclude name="sun/misc/Unsafe.*"/> |
302 |
</fileset> |
</fileset> |
303 |
|
<!-- |
304 |
<filterchain> |
<filterchain> |
305 |
|
--> |
306 |
|
|
307 |
<!-- |
<!-- |
308 |
# This filter gets rid of angle-bracketed type parameters |
# This filter gets rid of angle-bracketed type parameters |
316 |
# tweaking.) |
# tweaking.) |
317 |
--> |
--> |
318 |
|
|
319 |
|
<!-- |
320 |
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
321 |
classpath="${build.ant.dir}"> |
classpath="${build.ant.dir}"> |
322 |
<param name="notmatching" value="^\s+\*\s.*$"/> |
<param name="notmatching" value="^\s+\*\s.*$"/> |
323 |
<param name="pattern" value="<[^|>()]+?>+"/> |
<param name="pattern" value="<[^|>()]+?>+"/> |
324 |
<param name="replacement" value=" "/> |
<param name="replacement" value=" "/> |
325 |
</filterreader> |
</filterreader> |
326 |
|
--> |
327 |
|
|
328 |
|
<!-- |
329 |
|
</filterchain> |
330 |
|
--> |
331 |
|
</copy> |
332 |
|
|
333 |
<!-- |
</target> |
|
# This filter uncomments lines beginning with "//@" so that |
|
|
# javadoc can see imports that are needed to resolve links |
|
|
# but that shouldn't be in the compiled code. |
|
|
--> |
|
334 |
|
|
|
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
|
|
classpath="${build.ant.dir}"> |
|
|
<param name="matching" value="^//@.*$"/> |
|
|
<param name="pattern" value="^//@"/> |
|
|
<param name="replacement" value=""/> |
|
|
</filterreader> |
|
335 |
|
|
336 |
|
<target name="filter-doccheck" |
337 |
|
depends="filter-src"> |
338 |
|
|
339 |
|
<mkdir dir="${build.dc-filter.dir}"/> |
340 |
|
|
341 |
|
<copy todir="${build.dc-filter.dir}"> |
342 |
|
<fileset dir="${build.filter.src.dir}"> |
343 |
|
<include name="**/*.html"/> |
344 |
|
</fileset> |
345 |
|
</copy> |
346 |
|
|
347 |
|
<property name="generic.declarations" |
348 |
|
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 {}" |
349 |
|
/> |
350 |
|
|
351 |
|
<copy todir="${build.dc-filter.dir}"> |
352 |
|
<fileset dir="${build.filter.src.dir}"> |
353 |
|
<exclude name="**/*.html"/> |
354 |
|
</fileset> |
355 |
|
<filterchain> |
356 |
<!-- |
<!-- |
357 |
# The next two filters try to make the source look like |
# These two filters try to make the source look like |
358 |
# something that doccheck can process. The first removes |
# something that doccheck can process. The first removes |
359 |
# -source 1.4 assertions and the second adds in a bunch |
# -source 1.4 assertions and the second adds in a bunch |
360 |
# of single letter public nested marker interfaces so that |
# of single letter public nested marker interfaces so that |
361 |
# the generic type parameters are recognized. |
# the generic type parameters are recognized. |
|
# |
|
|
# Currently commented out because doccheck doesn't work. :-( |
|
362 |
--> |
--> |
363 |
|
|
|
<!-- |
|
364 |
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
365 |
classpath="${build.ant.dir}"> |
classpath="${build.ant.dir}"> |
366 |
<param name="matching" value="^\s*assert[\s ].*$"/> |
<param name="matching" value="^\s*assert[\s ].*$"/> |
370 |
|
|
371 |
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
372 |
classpath="${build.ant.dir}"> |
classpath="${build.ant.dir}"> |
373 |
<param name="matching" value="^(.*(class|interface|implements) .*|)\{.*$"/> |
<param name="matching" value="^([^*]*(class|interface|implements) .*|)\{.*$"/> |
374 |
<param name="pattern" value="$"/> |
<param name="pattern" value="$"/> |
375 |
<param name="replacement" value=" ${generic.declarations}"/> |
<param name="replacement" value=" ${generic.declarations}"/> |
376 |
</filterreader> |
</filterreader> |
|
--> |
|
377 |
|
|
378 |
</filterchain> |
</filterchain> |
379 |
</copy> |
</copy> |
386 |
|
|
387 |
<mkdir dir="${build.testcases.dir}"/> |
<mkdir dir="${build.testcases.dir}"/> |
388 |
|
|
389 |
<!-- |
<javac srcdir="${tck.src.dir}" |
390 |
<echo>javac ${gjc.args}</echo> |
destdir="${build.testcases.dir}" |
391 |
<echo>bootclasspath=${test.compile.bootclasspath}</echo> |
debug="${build.debug}" |
392 |
<echo>classpath="${test.classpath}"</echo> |
debuglevel="${build.debuglevel}" |
393 |
--> |
deprecation="${build.deprecation}" |
394 |
|
source="${build.sourcelevel}" |
395 |
|
fork="true"> |
396 |
|
|
397 |
|
<compilerarg value="${bootclasspath.args}"/> |
398 |
|
<compilerarg line="${build.args}"/> |
399 |
|
|
400 |
|
<classpath refid="test.classpath"/> |
401 |
|
|
402 |
|
</javac> |
403 |
|
|
404 |
<javac srcdir="${test.src.dir}" |
<javac srcdir="${test.src.dir}" |
405 |
destdir="${build.testcases.dir}" |
destdir="${build.testcases.dir}" |
409 |
source="${build.sourcelevel}" |
source="${build.sourcelevel}" |
410 |
fork="true"> |
fork="true"> |
411 |
|
|
412 |
<compilerarg line="${gjc.args}"/> |
<include name="jsr166/test/**"/> |
413 |
<bootclasspath refid="test.compile.bootclasspath"/> |
|
414 |
<classpath refid="test.classpath"/> |
<compilerarg value="${bootclasspath.args}"/> |
415 |
|
<compilerarg line="${build.args}"/> |
416 |
|
|
417 |
|
<classpath refid="test.classpath"/> |
418 |
|
|
419 |
|
</javac> |
420 |
|
|
421 |
|
<!-- |
422 |
|
<javac srcdir="${jtreg.src.dir}" |
423 |
|
destdir="${build.testcases.dir}" |
424 |
|
debug="${build.debug}" |
425 |
|
debuglevel="${build.debuglevel}" |
426 |
|
deprecation="${build.deprecation}" |
427 |
|
source="${build.sourcelevel}" |
428 |
|
fork="true"> |
429 |
|
|
430 |
|
<compilerarg value="${bootclasspath.args}"/> |
431 |
|
<compilerarg line="${build.args}"/> |
432 |
|
|
433 |
|
<classpath refid="test.classpath"/> |
434 |
|
|
435 |
</javac> |
</javac> |
436 |
|
--> |
437 |
|
|
438 |
</target> |
</target> |
439 |
|
|
453 |
dir="${build.reports.dir}" |
dir="${build.reports.dir}" |
454 |
fork="true"> |
fork="true"> |
455 |
|
|
456 |
<jvmarg value="-Xbootclasspath/p:${test.run.bootclasspath}"/> |
<jvmarg value="${bootclasspath.args}"/> |
457 |
|
<jvmarg value="-server"/> |
458 |
|
<jvmarg value="-showversion"/> |
459 |
|
|
460 |
|
<classpath refid="test.classpath"/> |
461 |
|
|
462 |
<formatter type="xml"/> |
<formatter type="xml"/> |
463 |
|
|
464 |
<batchtest todir="${build.reports.dir}"> |
<batchtest todir="${build.reports.dir}" unless="no.test.tck"> |
465 |
|
<fileset dir="${tck.src.dir}"> |
466 |
|
<include name="**/${testcase}Test.java"/> |
467 |
|
</fileset> |
468 |
|
</batchtest> |
469 |
|
|
470 |
|
<batchtest todir="${build.reports.dir}" if="do.test.old"> |
471 |
<fileset dir="${test.src.dir}"> |
<fileset dir="${test.src.dir}"> |
472 |
|
<include name="jsr166/test/**/${testcase}Test.java"/> |
473 |
|
</fileset> |
474 |
|
</batchtest> |
475 |
|
|
476 |
|
<!-- |
477 |
|
<batchtest todir="${build.reports.dir}" if="do.test.jtreg"> |
478 |
|
<fileset dir="${jtreg.src.dir}"> |
479 |
<include name="**/${testcase}Test.java"/> |
<include name="**/${testcase}Test.java"/> |
480 |
</fileset> |
</fileset> |
481 |
</batchtest> |
</batchtest> |
482 |
|
--> |
483 |
|
|
484 |
</junit> |
</junit> |
485 |
|
|
489 |
<target name="report-tests" |
<target name="report-tests" |
490 |
depends="run-tests"> |
depends="run-tests"> |
491 |
|
|
492 |
<!-- Sets junit.report.format to frames if Xalan is present, |
<!-- Sets junit.report.format to frames if redirection is present, |
493 |
otherwise sets it to noframes. --> |
otherwise sets it to noframes. --> |
494 |
<available property="junit.report.format" |
<available property="junit.report.format" |
495 |
value="frames" |
value="frames" |
514 |
|
|
515 |
<target name="configure-compiler"> |
<target name="configure-compiler"> |
516 |
|
|
517 |
<property name="gjc.version" |
<property name="unchecked.option" value="-Xlint:unchecked"/> |
|
value="2.0"/> |
|
518 |
|
|
519 |
<condition property="novariance.arg" value="-novariance"> |
<condition property="warnunchecked.arg" value="${unchecked.option}"> |
520 |
<and> |
<istrue value="${build.warnunchecked}"/> |
|
<equals arg1="${gjc.version}" arg2="2.0"/> |
|
|
<or> |
|
|
<not><isset property="gjc.novariance"/></not> |
|
|
<istrue value="${gjc.novariance}"/> |
|
|
</or> |
|
|
</and> |
|
|
</condition> |
|
|
|
|
|
<property name="novariance.arg" |
|
|
value=""/> |
|
|
|
|
|
<property name="gjc.dir" |
|
|
value="${lib.dir}/gjc"/> |
|
|
|
|
|
<property name="javac.jar" |
|
|
location="${gjc.dir}/${gjc.version}/javac.jar"/> |
|
|
|
|
|
<property name="collect.jar" |
|
|
location="${gjc.dir}/${gjc.version}/collect${novariance.arg}.jar"/> |
|
|
|
|
|
|
|
|
<condition property="warnunchecked.arg" value="-warnunchecked"> |
|
|
<istrue value="${gjc.warnunchecked}"/> |
|
521 |
</condition> |
</condition> |
522 |
|
|
523 |
<property name="warnunchecked.arg" value=""/> |
<property name="warnunchecked.arg" value=""/> |
524 |
|
|
|
<condition property="prepare.src.dir" value="${build.dir}/prepare-src"> |
|
|
<istrue value="${build.nothreads}"/> |
|
|
</condition> |
|
|
|
|
|
|
|
|
<!-- |
|
|
! Bootclasspath munging for source compilation. |
|
|
--> |
|
|
|
|
|
<path id="pre.bootclasspath"> |
|
|
<pathelement location="${javac.jar}"/> |
|
|
</path> |
|
|
|
|
|
<path id="compile.bootclasspath"> |
|
|
<pathelement location="${build.classes.dir}"/> |
|
|
<pathelement location="${collect.jar}"/> |
|
|
<pathelement location="${rt.jar}"/> |
|
|
</path> |
|
|
|
|
|
<!-- Flatten paths into platform-appropriate strings --> |
|
|
<property name="pre.bootclasspath" refid="pre.bootclasspath"/> |
|
|
<property name="compile.bootclasspath" refid="compile.bootclasspath"/> |
|
|
|
|
525 |
|
|
526 |
<!-- Common options in javac invocations --> |
<!-- Common options in javac invocations --> |
527 |
<property name="gjc.args" |
<property name="build.args" value="${warnunchecked.arg}"/> |
|
value="-J-Xbootclasspath/p:${pre.bootclasspath} ${warnunchecked.arg} ${novariance.arg}" |
|
|
/> |
|
|
|
|
|
</target> |
|
|
|
|
|
|
|
|
<target name="prepare-src" |
|
|
depends="configure-compiler" |
|
|
if="prepare.src.dir"> |
|
|
|
|
|
<mkdir dir="${prepare.src.dir}"/> |
|
|
<copy todir="${prepare.src.dir}"> |
|
|
<fileset dir="${src.dir}"> |
|
|
<exclude name="java/lang/**"/> |
|
|
</fileset> |
|
|
</copy> |
|
|
|
|
|
</target> |
|
|
|
|
|
|
|
|
<target name="configure-emulation"> |
|
|
|
|
|
<condition property="build.emulation.true"> |
|
|
<or> |
|
|
<and> |
|
|
<os family="windows"/> |
|
|
<not> |
|
|
<isset property="build.emulation"/> |
|
|
</not> |
|
|
</and> |
|
|
<istrue value="${build.emulation}"/> |
|
|
</or> |
|
|
</condition> |
|
528 |
|
|
529 |
</target> |
</target> |
530 |
|
|
536 |
<available property="junit.available" |
<available property="junit.available" |
537 |
classname="junit.framework.Protectable"/> |
classname="junit.framework.Protectable"/> |
538 |
|
|
539 |
|
<!-- Xalan --> |
540 |
|
<available property="xalan.available" |
541 |
|
classname="org.apache.xalan.Version"/> |
542 |
|
|
543 |
|
|
544 |
|
<!-- Ant 1.6beta and later don't need or want this check --> |
545 |
|
<!-- |
546 |
<fail message="Need JUnit 3.8.1 in ${ant.home}${file.separator}lib to run tests" |
<fail message="Need JUnit 3.8.1 in ${ant.home}${file.separator}lib to run tests" |
547 |
unless="junit.available"/> |
unless="junit.available"/> |
548 |
|
|
549 |
|
<fail message="Need Xalan 2.5.1 jar in ${ant.home}${file.separator}lib to run tests" |
550 |
<!-- |
unless="xalan.available"/> |
551 |
! Bootclasspath munging for testing, so JUnit can test our local |
--> |
|
! modifications to java.*. |
|
|
--> |
|
|
|
|
|
<path id="test.classpath"> |
|
|
<pathelement location="${product.jar}"/> |
|
|
<pathelement location="${build.testcases.dir}"/> |
|
|
<pathelement location="${junit.jar}"/> |
|
|
</path> |
|
|
|
|
|
<path id="test.compile.bootclasspath"> |
|
|
<pathelement location="${javac.jar}"/> |
|
|
<pathelement location="${collect.jar}"/> |
|
|
<pathelement location="${rt.jar}"/> |
|
|
</path> |
|
|
|
|
|
<path id="test.run.bootclasspath"> |
|
|
<pathelement location="${javac.jar}"/> |
|
|
<path refid="test.classpath"/> |
|
|
</path> |
|
|
|
|
|
<!-- Flatten test classpaths into platform-appropriate strings --> |
|
|
<property name="test.classpath" refid="test.classpath"/> |
|
|
<property name="test.compile.bootclasspath" refid="test.compile.bootclasspath"/> |
|
|
<property name="test.run.bootclasspath" refid="test.run.bootclasspath"/> |
|
552 |
|
|
553 |
</target> |
</target> |
554 |
|
|
556 |
|
|
557 |
<!-- Anthill targets --> |
<!-- Anthill targets --> |
558 |
|
|
559 |
<target name="anthill-build" |
<target name="anthill-build"> |
560 |
|
|
561 |
|
<!-- Override this in user.properties --> |
562 |
|
<property name="tiger.home" location="e:/j2sdk1.5.0"/> |
563 |
|
|
564 |
|
<exec resultproperty="result.property" dir="${basedir}" executable="${tiger.home}/bin/java"> |
565 |
|
<arg value="-Xmx256000000"/> |
566 |
|
<!-- classpath of new JVM --> |
567 |
|
<arg value="-classpath"/> <arg path="${java.class.path}"/> |
568 |
|
<!-- location of Ant home directory --> |
569 |
|
<arg value="-Dant.home=${ant.home}"/> |
570 |
|
<!-- the Ant main class --> |
571 |
|
<arg value="org.apache.tools.ant.Main"/> |
572 |
|
<!-- The build file --> |
573 |
|
<arg value="-buildfile"/> <arg value="build.xml"/> |
574 |
|
<!-- the target to build on the new Ant instance --> |
575 |
|
<arg value="-DJAVA_HOME=${tiger.home}"/> |
576 |
|
<arg value="do-anthill-build"/> |
577 |
|
</exec> |
578 |
|
</target> |
579 |
|
|
580 |
|
<target name="do-anthill-build" |
581 |
depends="jar, test, docs, dist-docs"/> |
depends="jar, test, docs, dist-docs"/> |
582 |
|
|
583 |
<target name="anthill-publish"> |
<target name="anthill-publish"> |
600 |
</target> |
</target> |
601 |
|
|
602 |
|
|
603 |
<target name="ng" depends="test"> |
<!-- Standalone sample program --> |
604 |
<java classname="SuperfluousAbstract" fork="true"> |
|
605 |
|
<target name="sample" depends=""> |
606 |
|
|
607 |
|
<mkdir dir="${build.testcases.dir}"/> |
608 |
|
|
609 |
|
<javac srcdir="${test.src.dir}" |
610 |
|
destdir="${build.testcases.dir}" |
611 |
|
debug="${build.debug}" |
612 |
|
debuglevel="${build.debuglevel}" |
613 |
|
deprecation="${build.deprecation}" |
614 |
|
source="${build.sourcelevel}" |
615 |
|
fork="true"> |
616 |
|
|
617 |
|
<!-- |
618 |
|
<compilerarg value="${bootclasspath.args}"/> |
619 |
|
<compilerarg line="${build.args}"/> |
620 |
|
|
621 |
|
<classpath refid="test.classpath"/> |
622 |
|
--> |
623 |
|
|
624 |
|
<include name="jsr166/test/Sample.java"/> |
625 |
|
|
626 |
|
</javac> |
627 |
|
|
628 |
|
<copy todir="${build.testcases.dir}"> |
629 |
|
<fileset dir="${test.src.dir}"> |
630 |
|
<include name="**/*.properties"/> |
631 |
|
</fileset> |
632 |
|
</copy> |
633 |
|
|
634 |
|
|
635 |
|
<java classname="jsr166.test.Sample" fork="true"> |
636 |
|
<jvmarg value="${bootclasspath.args}"/> |
637 |
|
<!-- <jvmarg value="-server"/> --> |
638 |
|
<!-- <jvmarg value="-ea"/> --> |
639 |
|
<classpath refid="test.classpath"/> |
640 |
|
<!-- <arg value="1000"/> --> |
641 |
|
</java> |
642 |
|
</target> |
643 |
|
|
644 |
|
|
645 |
|
<!-- BoF demos --> |
646 |
|
|
647 |
|
<target name="j1" depends="jar"> |
648 |
|
|
649 |
|
<mkdir dir="${build.j1.dir}"/> |
650 |
|
|
651 |
|
<javac srcdir="${j1.src.dir}" |
652 |
|
destdir="${build.j1.dir}" |
653 |
|
debug="${build.debug}" |
654 |
|
debuglevel="${build.debuglevel}" |
655 |
|
deprecation="${build.deprecation}" |
656 |
|
source="${build.sourcelevel}" |
657 |
|
fork="true"> |
658 |
|
|
659 |
|
<compilerarg value="${bootclasspath.args}"/> |
660 |
|
<compilerarg line="${build.args}"/> |
661 |
|
|
662 |
|
<classpath refid="j1.classpath"/> |
663 |
|
|
664 |
|
</javac> |
665 |
|
|
666 |
|
<!-- |
667 |
|
<java classname="MainClass" fork="true"> |
668 |
|
<jvmarg value="${bootclasspath.args}"/> |
669 |
|
<classpath refid="j1.classpath"/> |
670 |
|
</java> |
671 |
|
--> |
672 |
|
|
673 |
|
<junit printsummary="true" |
674 |
|
showoutput="true" |
675 |
|
errorProperty="junit.failed" |
676 |
|
failureProperty="junit.failed" |
677 |
|
dir="${build.j1.dir}" |
678 |
|
fork="true"> |
679 |
|
|
680 |
|
<jvmarg value="${bootclasspath.args}"/> |
681 |
|
<jvmarg value="-server"/> |
682 |
|
|
683 |
|
<classpath refid="j1.classpath"/> |
684 |
|
|
685 |
|
<formatter type="xml"/> |
686 |
|
|
687 |
|
<batchtest todir="${build.j1.dir}"> |
688 |
|
<fileset dir="${j1.src.dir}"> |
689 |
|
<include name="**/*Test.java"/> |
690 |
|
</fileset> |
691 |
|
</batchtest> |
692 |
|
|
693 |
|
</junit> |
694 |
|
|
695 |
|
<!-- Sets junit.report.format to frames if redirection is present, |
696 |
|
otherwise sets it to noframes. --> |
697 |
|
<available property="junit.report.format" |
698 |
|
value="frames" |
699 |
|
classname="org.apache.xalan.lib.Redirect" |
700 |
|
/> |
701 |
|
<property name="junit.report.format" value="noframes"/> |
702 |
|
|
703 |
|
<junitreport todir="${build.j1.dir}"> |
704 |
|
<fileset dir="${build.j1.dir}"> |
705 |
|
<include name="TEST-*.xml"/> |
706 |
|
</fileset> |
707 |
|
<report styledir="${stylesheet.dir}" |
708 |
|
format="${junit.report.format}" |
709 |
|
todir="${build.j1.dir}" |
710 |
|
/> |
711 |
|
</junitreport> |
712 |
|
|
713 |
|
<fail message="Test Cases Failed" if="junit.failed"/> |
714 |
|
|
715 |
<jvmarg value="-Xbootclasspath/p:${test.run.bootclasspath}"/> |
</target> |
716 |
|
|
717 |
|
|
718 |
|
|
719 |
|
<!-- C++ and JNI definitions and demos --> |
720 |
|
|
721 |
|
<target name="configure-cpp"> |
722 |
|
|
723 |
|
<!-- Define tasks and types --> |
724 |
|
|
725 |
|
<path id="cpptasks.path"> |
726 |
|
<pathelement location="${lib.dir}/cpptasks.jar"/> |
727 |
|
</path> |
728 |
|
<taskdef resource="cpptasks.tasks" classpathref="cpptasks.path"/> |
729 |
|
<typedef resource="cpptasks.types" classpathref="cpptasks.path"/> |
730 |
|
|
731 |
|
<!-- Set platform property for JNI includes --> |
732 |
|
|
733 |
|
<condition property="platform" value="linux"> |
734 |
|
<os name="Linux"/> |
735 |
|
</condition> |
736 |
|
<condition property="platform" value="win32"> |
737 |
|
<os family="windows"/> |
738 |
|
</condition> |
739 |
|
<condition property="platform" value="solaris"> |
740 |
|
<os name="SunOS"/> |
741 |
|
</condition> |
742 |
|
|
743 |
|
</target> |
744 |
|
|
745 |
|
|
746 |
|
<target name="cppdemo" depends="configure-cpp"> |
747 |
|
|
748 |
|
<mkdir dir="${build.dir}"/> |
749 |
|
|
750 |
|
<cc multithreaded="true" |
751 |
|
name="g++" |
752 |
|
objdir="${build.dir}" |
753 |
|
outfile="${build.dir}/CppDemo"> |
754 |
|
<fileset dir="${test.src.dir}" includes="CppDemo.cpp"/> |
755 |
|
<libset libs="stdc++"/> |
756 |
|
</cc> |
757 |
|
|
758 |
|
<exec executable="${build.dir}/CppDemo"> |
759 |
|
<arg line="count in word frequency of word in command line count"/> |
760 |
|
</exec> |
761 |
|
|
762 |
|
</target> |
763 |
|
|
764 |
|
|
765 |
|
<target name="jnidemo" depends="init, configure-compiler, configure-cpp"> |
766 |
|
|
767 |
|
<mkdir dir="${build.testcases.dir}"/> |
768 |
|
|
769 |
|
<javac srcdir="${test.src.dir}" |
770 |
|
destdir="${build.testcases.dir}" |
771 |
|
debug="${build.debug}" |
772 |
|
debuglevel="${build.debuglevel}" |
773 |
|
deprecation="${build.deprecation}" |
774 |
|
source="${build.sourcelevel}" |
775 |
|
fork="true"> |
776 |
|
<compilerarg value="${bootclasspath.args}"/> |
777 |
|
<compilerarg line="${build.args}"/> |
778 |
|
<classpath refid="test.classpath"/> |
779 |
|
<include name="JniDemo.java"/> |
780 |
|
</javac> |
781 |
|
|
782 |
|
<javah destdir="${build.testcases.dir}" |
783 |
|
classpathref="test.classpath"> |
784 |
|
<class name="JniDemo"/> |
785 |
|
</javah> |
786 |
|
|
787 |
|
<cc multithreaded="true" |
788 |
|
name="g++" |
789 |
|
objdir="${build.dir}" |
790 |
|
outfile="${build.dir}/JniDemo" |
791 |
|
outtype="shared"> |
792 |
|
|
793 |
|
<compiler> |
794 |
|
<defineset> |
795 |
|
<define name="__int64" value="long long"/> |
796 |
|
</defineset> |
797 |
|
<includepath location="${java.home}/../include"/> |
798 |
|
<includepath location="${java.home}/../include/${platform}"/> |
799 |
|
<compilerarg value="-mno-cygwin"/> |
800 |
|
</compiler> |
801 |
|
|
802 |
|
<linker> |
803 |
|
<linkerarg value="--add-stdcall-alias"/> |
804 |
|
</linker> |
805 |
|
|
806 |
|
<includepath location="${build.testcases.dir}"/> |
807 |
|
|
808 |
|
<fileset dir="${test.src.dir}" includes="JniDemo.cpp"/> |
809 |
|
|
810 |
|
<libset libs="stdc++"/> |
811 |
|
|
812 |
|
</cc> |
813 |
|
|
814 |
|
<!-- Necessary if windows, harmless if not --> |
815 |
|
<copy file="${build.dir}/libJniDemo.so" tofile="${build.dir}/JniDemo.dll"/> |
816 |
|
|
817 |
|
<java classname="JniDemo" fork="true"> |
818 |
|
<!-- Watch out: path separator hardwired to semicolon here! --> |
819 |
|
<sysproperty key="java.library.path" path="${java.library.path};${build.dir}"/> |
820 |
|
<classpath refid="test.classpath"/> |
821 |
|
<arg line="count in word frequency of word in command line count"/> |
822 |
</java> |
</java> |
823 |
|
|
824 |
</target> |
</target> |
825 |
|
|
826 |
|
|
827 |
|
|
828 |
|
<!-- Backward compatibility, work in progress (some files not checked in) --> |
829 |
|
|
830 |
|
|
831 |
|
|
832 |
|
<property name="pretiger.src.dir" location="${build.dir}/pretiger/src"/> |
833 |
|
<property name="build.pretiger.dir" location="${build.dir}/pretiger/classes"/> |
834 |
|
<property name="pretiger.jar" location="${build.lib.dir}/jsr166-pretiger.jar"/> |
835 |
|
<property name="pretiger.sourcelevel" value="1.4"/> |
836 |
|
|
837 |
|
<target name="defang" |
838 |
|
depends="init" |
839 |
|
description="Generates pre-Tiger compatible source"> |
840 |
|
|
841 |
|
<delete dir="${pretiger.src.dir}"/> |
842 |
|
<mkdir dir="${pretiger.src.dir}"/> |
843 |
|
|
844 |
|
<exec executable="perl"> |
845 |
|
<arg file="etc/defang.pl"/> |
846 |
|
<!-- <arg value="-v"/> --> |
847 |
|
<arg value="-s"/> <arg file="${src.dir}"/> |
848 |
|
<arg value="-t"/> <arg file="${pretiger.src.dir}"/> |
849 |
|
</exec> |
850 |
|
|
851 |
|
</target> |
852 |
|
|
853 |
|
<target name="compile-pretiger" |
854 |
|
depends="init, configure-compiler, defang" |
855 |
|
description="Compiles pre-Tiger sources to build folder"> |
856 |
|
|
857 |
|
<mkdir dir="${build.pretiger.dir}"/> |
858 |
|
|
859 |
|
<javac srcdir="${pretiger.src.dir}" |
860 |
|
destdir="${build.pretiger.dir}" |
861 |
|
debug="${build.debug}" |
862 |
|
debuglevel="${build.debuglevel}" |
863 |
|
deprecation="${build.deprecation}" |
864 |
|
source="${pretiger.sourcelevel}" |
865 |
|
fork="true"> |
866 |
|
|
867 |
|
<compilerarg line="${build.args}"/> |
868 |
|
<exclude name="**/Thread.java"/> |
869 |
|
|
870 |
|
</javac> |
871 |
|
|
872 |
|
</target> |
873 |
|
|
874 |
|
<target name="pretiger" depends="compile-pretiger"> |
875 |
|
|
876 |
|
<mkdir dir="${build.lib.dir}"/> |
877 |
|
|
878 |
|
<jar destfile="${pretiger.jar}"> |
879 |
|
<fileset dir="${build.pretiger.dir}"> |
880 |
|
</fileset> |
881 |
|
</jar> |
882 |
|
|
883 |
|
</target> |
884 |
|
|
885 |
</project> |
</project> |