2 |
|
|
3 |
<description> |
<description> |
4 |
Build file for JSR-166 |
Build file for JSR-166 |
5 |
|
|
6 |
|
Note that junit.jar must be in ${ant.home}/lib for the |
7 |
|
test target to work. [FIXME: This should be automatically |
8 |
|
enforced by this build file by failing with a message if |
9 |
|
junit.jar is not in the right place.] |
10 |
</description> |
</description> |
11 |
|
|
12 |
<!-- Compilation options --> |
<!-- Compilation options --> |
13 |
<property name="build.debug" value="true"/> |
<property name="build.debug" value="true"/> |
14 |
<property name="build.debuglevel" value="source,lines,vars"/> |
<property name="build.debuglevel" value="source,lines,vars"/> |
15 |
<property name="build.deprecation" value="false"/> |
<property name="build.deprecation" value="false"/> |
16 |
<property name="build.sourcelevel" value="1.4"/> |
<property name="build.sourcelevel" value="1.5"/> |
17 |
|
|
18 |
<!-- Build locations --> |
<!-- Build locations --> |
19 |
<property name="build.dir" location="build"/> |
<property name="build.dir" location="build"/> |
40 |
<property name="rt.jar" location="${java.home}/lib/rt.jar"/> |
<property name="rt.jar" location="${java.home}/lib/rt.jar"/> |
41 |
|
|
42 |
<property name="gj.compiler.args" |
<property name="gj.compiler.args" |
43 |
value='-J-Xbootclasspath/p:${javac.jar} -bootclasspath ${collect.jar};${rt.jar} -gj' |
value='-J-Xbootclasspath/p:${javac.jar}' |
44 |
/> |
/> |
45 |
|
|
46 |
|
<path id="gj.compiler.bootclasspath"> |
47 |
|
<pathelement location="${collect.jar}"/> |
48 |
|
<pathelement location="${rt.jar}"/> |
49 |
|
</path> |
50 |
|
|
51 |
|
<path id="test.classpath"> |
52 |
|
<pathelement location="${product.jar}"/> |
53 |
|
</path> |
54 |
|
|
55 |
|
|
56 |
<target name="compile"> |
<target name="compile"> |
57 |
<mkdir dir="${build.classes.dir}"/> |
<mkdir dir="${build.classes.dir}"/> |
63 |
source="${build.sourcelevel}" |
source="${build.sourcelevel}" |
64 |
fork="true"> |
fork="true"> |
65 |
|
|
66 |
|
<bootclasspath refid="gj.compiler.bootclasspath"/> |
67 |
<compilerarg line="${gj.compiler.args}"/> |
<compilerarg line="${gj.compiler.args}"/> |
68 |
|
|
69 |
<!-- need this because srcdir is basedir! --> |
<!-- need this because srcdir is basedir! --> |
94 |
|
|
95 |
<tag name="revised" description="Last revised:"/> |
<tag name="revised" description="Last revised:"/> |
96 |
<tag name="spec" description="Specified by:"/> |
<tag name="spec" description="Specified by:"/> |
97 |
|
<tag name="editor" description="Last edited by:"/> |
98 |
|
<tag name="fixme" description="FIX ME:"/> |
99 |
<packageset dir="${build.filter.src.dir}"> |
<packageset dir="${build.filter.src.dir}"> |
100 |
<include name="java/**"/> |
<include name="java/**"/> |
101 |
</packageset> |
</packageset> |
176 |
source="${build.sourcelevel}" |
source="${build.sourcelevel}" |
177 |
fork="true"> |
fork="true"> |
178 |
|
|
179 |
|
<bootclasspath refid="gj.compiler.bootclasspath"/> |
180 |
<compilerarg line="${gj.compiler.args}"/> |
<compilerarg line="${gj.compiler.args}"/> |
181 |
|
<classpath refid="test.classpath"/> |
|
<classpath id="test.classpath"> |
|
|
<pathelement location="${product.jar}"/> |
|
|
<pathelement location="${junit.jar}"/> |
|
|
</classpath> |
|
|
|
|
182 |
<include name="**/*Test.java"/> |
<include name="**/*Test.java"/> |
183 |
|
|
184 |
</javac> |
</javac> |