1 |
<project name="jsr166" default="jar"> |
<project name="jsr166" default="usage"> |
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 |
JUnit 1.8 must be in ${ant.home}/lib for the test target to work. |
|
test target to work. [FIXME: This should be automatically |
|
|
enforced by this build file by failing with a message if |
|
|
junit.jar is not in the right place.] |
|
7 |
</description> |
</description> |
8 |
|
|
9 |
|
|
10 |
|
<target name="usage" description="Prints this message"> |
11 |
|
<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> |
28 |
|
</target> |
29 |
|
|
30 |
|
|
31 |
<!-- Compilation options --> |
<!-- Compilation options --> |
32 |
|
<property name="build.sourcelevel" value="1.5"/> |
33 |
<property name="build.debug" value="true"/> |
<property name="build.debug" value="true"/> |
34 |
<property name="build.debuglevel" value="source,lines,vars"/> |
<property name="build.debuglevel" value="source,lines,vars"/> |
35 |
<property name="build.deprecation" value="false"/> |
<property name="build.deprecation" value="false"/> |
36 |
<property name="build.sourcelevel" value="1.4"/> |
<!-- |
37 |
|
<property name="build.warnings" value="true"/> |
38 |
|
--> |
39 |
|
|
40 |
<!-- Build locations --> |
<!-- Build locations --> |
41 |
<property name="build.dir" location="build"/> |
<property name="build.dir" location="build"/> |
44 |
<property name="build.lib.dir" location="${build.dir}/lib"/> |
<property name="build.lib.dir" location="${build.dir}/lib"/> |
45 |
<property name="build.ant.dir" location="${build.dir}/ant"/> |
<property name="build.ant.dir" location="${build.dir}/ant"/> |
46 |
<property name="build.javadocs.dir" location="${build.dir}/javadocs"/> |
<property name="build.javadocs.dir" location="${build.dir}/javadocs"/> |
47 |
|
<property name="build.stripped.dir" location="${build.dir}/stripped"/> |
48 |
<property name="build.reports.dir" location="${build.dir}/reports"/> |
<property name="build.reports.dir" location="${build.dir}/reports"/> |
49 |
|
<property name="build.doccheck.dir" location="${build.dir}/doccheck"/> |
50 |
<property name="build.filter.src.dir" location="${build.dir}/filtersrc"/> |
<property name="build.filter.src.dir" location="${build.dir}/filtersrc"/> |
51 |
|
|
52 |
<!-- Source locations --> |
<!-- Source locations --> |
55 |
<property name="ant.src.dir" location="${basedir}/etc/ant"/> |
<property name="ant.src.dir" location="${basedir}/etc/ant"/> |
56 |
<property name="stylesheet.dir" location="${basedir}/etc/xsl"/> |
<property name="stylesheet.dir" location="${basedir}/etc/xsl"/> |
57 |
<property name="lib.dir" location="${basedir}/lib"/> |
<property name="lib.dir" location="${basedir}/lib"/> |
58 |
|
<property name="dist.dir" location="${basedir}/dist"/> |
59 |
|
|
60 |
|
<!-- Distribution locations --> |
61 |
|
<property name="dist.javadocs.dir" location="${dist.dir}/docs"/> |
62 |
|
|
63 |
<!-- Jar locations --> |
<!-- Jar locations --> |
64 |
<property name="product.jar" location="${build.lib.dir}/jsr166.jar"/> |
<property name="product.jar" location="${build.lib.dir}/jsr166.jar"/> |
67 |
<property name="junit.jar" location="${lib.dir}/junit.jar"/> |
<property name="junit.jar" location="${lib.dir}/junit.jar"/> |
68 |
<property name="rt.jar" location="${java.home}/lib/rt.jar"/> |
<property name="rt.jar" location="${java.home}/lib/rt.jar"/> |
69 |
|
|
70 |
<property name="gj.compiler.args" |
<property name="javac.args" value='-J-Xbootclasspath/p:${javac.jar}'/> |
|
value='-J-Xbootclasspath/p:${javac.jar} -gj' |
|
|
/> |
|
71 |
|
|
72 |
<path id="gj.compiler.bootclasspath"> |
<path id="javac.bootclasspath"> |
73 |
<pathelement location="${collect.jar}"/> |
<pathelement location="${collect.jar}"/> |
74 |
<pathelement location="${rt.jar}"/> |
<pathelement location="${rt.jar}"/> |
75 |
</path> |
</path> |
79 |
</path> |
</path> |
80 |
|
|
81 |
|
|
82 |
<target name="compile"> |
<!-- Main targets --> |
83 |
|
|
84 |
|
<target name="compile" depends="init" |
85 |
|
description="Compiles all sources to build folder"> |
86 |
<mkdir dir="${build.classes.dir}"/> |
<mkdir dir="${build.classes.dir}"/> |
87 |
<javac srcdir="${src.dir}" |
<javac srcdir="${src.dir}" |
88 |
destdir="${build.classes.dir}" |
destdir="${build.classes.dir}" |
92 |
source="${build.sourcelevel}" |
source="${build.sourcelevel}" |
93 |
fork="true"> |
fork="true"> |
94 |
|
|
95 |
<bootclasspath refid="gj.compiler.bootclasspath"/> |
<bootclasspath refid="javac.bootclasspath"/> |
96 |
<compilerarg line="${gj.compiler.args}"/> |
<compilerarg line="${javac.args} ${build.warnings.option}"/> |
97 |
|
|
98 |
<!-- need this because srcdir is basedir! --> |
<!-- need this because srcdir is basedir! --> |
99 |
<include name="java/**/*.java"/> |
<include name="java/**/*.java"/> |
102 |
</target> |
</target> |
103 |
|
|
104 |
|
|
105 |
<target name="jar" depends="compile"> |
<target name="jar" depends="compile" |
106 |
|
description="Builds library jar from compiled sources"> |
107 |
<mkdir dir="${build.lib.dir}"/> |
<mkdir dir="${build.lib.dir}"/> |
108 |
<jar basedir="${build.classes.dir}" |
<jar basedir="${build.classes.dir}" |
109 |
destfile="${product.jar}" |
destfile="${product.jar}" |
111 |
</target> |
</target> |
112 |
|
|
113 |
|
|
114 |
<target name="test" depends="report-tests"/> |
<target name="test" depends="init, check-junit, report-tests" |
115 |
|
description="Runs all tests (requires JUnit 1.8 in ${ant.home}/lib)"/> |
116 |
|
|
117 |
|
|
118 |
|
<target name="checkstyle" depends="filter-src" |
119 |
|
description="Reports on style errors in Java source (verbose, mostly chaff)"> |
120 |
|
<taskdef resource="checkstyletask.properties" |
121 |
|
classpath="${lib.dir}/checkstyle-all-2.4.jar"/> |
122 |
|
|
123 |
|
<checkstyle> |
124 |
|
<formatter type="plain"/> <!-- also available: type="xml" --> |
125 |
|
<fileset dir="${build.filter.src.dir}" includes="**/*.java"/> |
126 |
|
</checkstyle> |
127 |
|
</target> |
128 |
|
|
129 |
<target name="docs" depends="filter-src"> |
|
130 |
|
<target name="doccheck" depends="filter-src" |
131 |
|
description="Reports on javadoc style errors (not working yet)"> |
132 |
|
<delete dir="${build.doccheck.dir}"/> |
133 |
|
<mkdir dir="${build.doccheck.dir}"/> |
134 |
|
<javadoc doclet="com.sun.tools.doclets.doccheck.DocCheck" |
135 |
|
docletpath="${lib.dir}/doccheck.jar" |
136 |
|
destdir="${build.doccheck.dir}"> |
137 |
|
<packageset dir="${build.filter.src.dir}"> |
138 |
|
<include name="java/**"/> |
139 |
|
</packageset> |
140 |
|
</javadoc> |
141 |
|
</target> |
142 |
|
|
143 |
|
|
144 |
|
<target name="docs" depends="filter-src" |
145 |
|
description="Builds javadocs with custom tags to build folder"> |
146 |
<delete dir="${build.javadocs.dir}"/> |
<delete dir="${build.javadocs.dir}"/> |
147 |
<mkdir dir="${build.javadocs.dir}"/> |
<mkdir dir="${build.javadocs.dir}"/> |
148 |
<javadoc destdir="${build.javadocs.dir}" |
<javadoc destdir="${build.javadocs.dir}" |
152 |
|
|
153 |
<tag name="revised" description="Last revised:"/> |
<tag name="revised" description="Last revised:"/> |
154 |
<tag name="spec" description="Specified by:"/> |
<tag name="spec" description="Specified by:"/> |
155 |
|
<tag name="editor" description="Last edited by:"/> |
156 |
|
<tag name="fixme" description="FIX ME:"/> |
157 |
<packageset dir="${build.filter.src.dir}"> |
<packageset dir="${build.filter.src.dir}"> |
158 |
<include name="java/**"/> |
<include name="java/**"/> |
159 |
</packageset> |
</packageset> |
162 |
</target> |
</target> |
163 |
|
|
164 |
|
|
165 |
<target name="clean"> |
<target name="strip" depends="init"> |
166 |
|
<mkdir dir="${build.stripped.dir}"/> |
167 |
|
<javac srcdir="${src.dir}" |
168 |
|
destdir="${build.stripped.dir}" |
169 |
|
debug="${build.debug}" |
170 |
|
debuglevel="${build.debuglevel}" |
171 |
|
deprecation="${build.deprecation}" |
172 |
|
source="${build.sourcelevel}" |
173 |
|
fork="true"> |
174 |
|
|
175 |
|
<bootclasspath refid="javac.bootclasspath"/> |
176 |
|
<compilerarg line="${javac.args} ${build.warnings.option} -s"/> |
177 |
|
|
178 |
|
<!-- need this because srcdir is basedir! --> |
179 |
|
<include name="java/**/*.java"/> |
180 |
|
|
181 |
|
</javac> |
182 |
|
</target> |
183 |
|
|
184 |
|
|
185 |
|
<target name="dist" depends="init, dist-clean, dist-jar, dist-docs" |
186 |
|
description="Puts all distributable products in single hierarchy"/> |
187 |
|
|
188 |
|
|
189 |
|
<target name="clean" |
190 |
|
description="Removes all build products"> |
191 |
<delete dir="${build.dir}"/> |
<delete dir="${build.dir}"/> |
192 |
<delete dir="${build.classes.dir}"/> |
<delete dir="${build.classes.dir}"/> |
193 |
<delete dir="${build.lib.dir}"/> |
<delete dir="${build.lib.dir}"/> |
|
<delete dir="${build.javadocs.dir}"/> |
|
194 |
</target> |
</target> |
195 |
|
|
196 |
|
|
197 |
<!-- Internal targets used by docs target --> |
<target name="dist-clean" |
198 |
|
description="Removes all build and distribution products"> |
199 |
|
<delete dir="${dist.dir}"/> |
200 |
|
</target> |
201 |
|
|
202 |
|
|
203 |
|
<!-- Anthill targets --> |
204 |
|
|
205 |
<target name="compile-ant"> |
<!-- Should really run the tests instead of just the jar target --> |
206 |
|
<target name="anthill-build" depends="jar, docs, dist-docs"/> |
207 |
|
|
208 |
|
<target name="anthill-publish"> |
209 |
|
<copy todir="${deployDir}/docs/private"> |
210 |
|
<fileset dir="${build.javadocs.dir}"/> |
211 |
|
</copy> |
212 |
|
<copy todir="${deployDir}/docs/public"> |
213 |
|
<fileset dir="${dist.javadocs.dir}"/> |
214 |
|
</copy> |
215 |
|
<copy tofile="${deployDir}/index.html" |
216 |
|
file="${basedir}/etc/anthill-index.html"/> |
217 |
|
</target> |
218 |
|
|
219 |
|
|
220 |
|
<!-- Internal targets --> |
221 |
|
|
222 |
|
<target name="set-warnings-if" if="build.warnings"> |
223 |
|
<property name="build.warnings.option" value="-warnunchecked"/> |
224 |
|
</target> |
225 |
|
|
226 |
|
|
227 |
|
<target name="set-warnings-unless" unless="build.warnings"> |
228 |
|
<property name="build.warnings.option" value=""/> |
229 |
|
</target> |
230 |
|
|
231 |
|
|
232 |
|
<target name="init" depends="set-warnings-if, set-warnings-unless"> |
233 |
|
<!-- Version is kept in a separate file --> |
234 |
|
<loadfile property="version" srcFile="version.properties"/> |
235 |
|
<echo>Building JSR-166 version ${version}</echo> |
236 |
|
</target> |
237 |
|
|
238 |
|
|
239 |
|
<target name="dist-jar" depends="clean, jar"> |
240 |
|
<copy file="${product.jar}" todir="${dist.dir}"/> |
241 |
|
</target> |
242 |
|
|
243 |
|
|
244 |
|
<target name="dist-docs" depends="filter-src" |
245 |
|
description="Builds javadocs without custom tags to dist folder"> |
246 |
|
<delete dir="${dist.javadocs.dir}"/> |
247 |
|
<mkdir dir="${dist.javadocs.dir}"/> |
248 |
|
<javadoc destdir="${dist.javadocs.dir}" |
249 |
|
link="http://java.sun.com/j2se/1.4.1/docs/api" |
250 |
|
overview="${src.dir}/intro.html" |
251 |
|
source="${build.sourcelevel}"> |
252 |
|
|
253 |
|
<packageset dir="${build.filter.src.dir}"> |
254 |
|
<include name="java/**"/> |
255 |
|
</packageset> |
256 |
|
|
257 |
|
</javadoc> |
258 |
|
</target> |
259 |
|
|
260 |
|
|
261 |
|
<target name="compile-ant-filter" depends="init"> |
262 |
<mkdir dir="${build.ant.dir}"/> |
<mkdir dir="${build.ant.dir}"/> |
263 |
<javac srcdir="${ant.src.dir}" |
<javac srcdir="${ant.src.dir}" |
264 |
destdir="${build.ant.dir}" |
destdir="${build.ant.dir}" |
267 |
</target> |
</target> |
268 |
|
|
269 |
|
|
270 |
<target name="filter-src" depends="compile-ant"> |
<target name="filter-src" depends="compile-ant-filter"> |
271 |
<mkdir dir="${build.filter.src.dir}"/> |
<mkdir dir="${build.filter.src.dir}"/> |
272 |
<copy todir="${build.filter.src.dir}"> |
<copy todir="${build.filter.src.dir}"> |
273 |
<fileset dir="${src.dir}"> |
<fileset dir="${src.dir}"> |
274 |
<include name="**/*.java"/> |
<include name="java/**/*.java"/> |
275 |
</fileset> |
</fileset> |
276 |
<filterchain> |
<filterchain> |
277 |
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
308 |
</target> |
</target> |
309 |
|
|
310 |
|
|
|
<!-- Internal targets used by test target --> |
|
|
|
|
311 |
<target name="compile-tests" depends="jar"> |
<target name="compile-tests" depends="jar"> |
312 |
<mkdir dir="${build.testcases.dir}"/> |
<mkdir dir="${build.testcases.dir}"/> |
313 |
<javac srcdir="${test.src.dir}" |
<javac srcdir="${test.src.dir}" |
318 |
source="${build.sourcelevel}" |
source="${build.sourcelevel}" |
319 |
fork="true"> |
fork="true"> |
320 |
|
|
321 |
<bootclasspath refid="gj.compiler.bootclasspath"/> |
<bootclasspath refid="javac.bootclasspath"/> |
322 |
<compilerarg line="${gj.compiler.args}"/> |
<compilerarg line="${javac.args} ${build.warnings.option}"/> |
323 |
<classpath refid="test.classpath"/> |
<classpath refid="test.classpath"/> |
324 |
<include name="**/*Test.java"/> |
<include name="**/*Test.java"/> |
325 |
|
|
326 |
</javac> |
</javac> |
327 |
</target> |
</target> |
328 |
|
|
329 |
|
|
330 |
<target name="run-tests" depends="compile-tests"> |
<target name="run-tests" depends="compile-tests"> |
331 |
<mkdir dir="${build.reports.dir}"/> |
<mkdir dir="${build.reports.dir}"/> |
332 |
<junit printsummary="true" |
<junit printsummary="true" |
333 |
showoutput="true" |
showoutput="true" |
334 |
errorProperty="junit.failed" |
errorProperty="junit.failed" |
335 |
failureProperty="junit.failed" |
failureProperty="junit.failed" |
336 |
dir="${build.reports.dir}"> |
dir="${build.reports.dir}" |
337 |
|
fork="true"> |
338 |
|
|
339 |
|
<jvmarg value="-Xbootclasspath/p:${product.jar}"/> |
340 |
|
|
341 |
<classpath> |
<classpath> |
342 |
<path refid="test.classpath"/> |
<!-- <path refid="test.classpath"/> --> |
343 |
<pathelement location="${build.testcases.dir}"/> |
<pathelement location="${build.testcases.dir}"/> |
344 |
</classpath> |
</classpath> |
345 |
|
|
378 |
</target> |
</target> |
379 |
|
|
380 |
|
|
381 |
|
<target name="check-junit"> |
382 |
|
<!-- FIXME: this test isn't specific enough --> |
383 |
|
<available property="junit.available" |
384 |
|
classname="junit.framework.TestCase"/> |
385 |
|
<fail message="Need JUnit 1.8 to run tests" unless="junit.available"/> |
386 |
|
</target> |
387 |
|
|
388 |
|
|
389 |
</project> |
</project> |