| 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 |
|
<property file="user.properties"/> |
| 31 |
|
<property name="testcase" value="*"/> |
| 32 |
|
|
| 33 |
<!-- Compilation options --> |
<!-- Compilation options --> |
| 34 |
<property name="build.sourcelevel" value="1.5"/> |
<property name="build.sourcelevel" value="1.5"/> |
| 35 |
<property name="build.debug" value="true"/> |
<property name="build.debug" value="true"/> |
| 52 |
<property name="build.filter.src.dir" location="${build.dir}/filtersrc"/> |
<property name="build.filter.src.dir" location="${build.dir}/filtersrc"/> |
| 53 |
|
|
| 54 |
<!-- Source locations --> |
<!-- Source locations --> |
| 55 |
<property name="src.dir" location="${basedir}"/> |
<property name="src.dir" location="${basedir}/src/main"/> |
| 56 |
<property name="test.src.dir" location="${basedir}/etc/testcases"/> |
<property name="test.src.dir" location="${basedir}/src/test"/> |
| 57 |
<property name="ant.src.dir" location="${basedir}/etc/ant"/> |
<property name="ant.src.dir" location="${basedir}/etc/ant"/> |
| 58 |
<property name="stylesheet.dir" location="${basedir}/etc/xsl"/> |
<property name="stylesheet.dir" location="${basedir}/etc/xsl"/> |
| 59 |
<property name="lib.dir" location="${basedir}/lib"/> |
<property name="lib.dir" location="${basedir}/lib"/> |
| 97 |
<bootclasspath refid="javac.bootclasspath"/> |
<bootclasspath refid="javac.bootclasspath"/> |
| 98 |
<compilerarg line="${javac.args} ${build.warnings.option}"/> |
<compilerarg line="${javac.args} ${build.warnings.option}"/> |
| 99 |
|
|
|
<!-- need this because srcdir is basedir! --> |
|
|
<include name="java/**/*.java"/> |
|
|
|
|
| 100 |
</javac> |
</javac> |
| 101 |
</target> |
</target> |
| 102 |
|
|
| 110 |
</target> |
</target> |
| 111 |
|
|
| 112 |
|
|
| 113 |
<target name="test" depends="init, report-tests" |
<target name="test" depends="init, check-junit, report-tests" |
| 114 |
description="Runs all tests"/> |
description="Runs all tests (requires JUnit 1.8 in ${ant.home}/lib)"/> |
| 115 |
|
|
| 116 |
|
|
| 117 |
<target name="checkstyle" depends="filter-src" |
<target name="checkstyle" depends="filter-src" |
| 118 |
description="Reports on style errors in Java source"> |
description="Reports on style errors in Java source (verbose, mostly chaff)"> |
| 119 |
<taskdef resource="checkstyletask.properties" |
<taskdef resource="checkstyletask.properties" |
| 120 |
classpath="${lib.dir}/checkstyle-all-2.4.jar"/> |
classpath="${lib.dir}/checkstyle-all-2.4.jar"/> |
| 121 |
|
|
| 127 |
|
|
| 128 |
|
|
| 129 |
<target name="doccheck" depends="filter-src" |
<target name="doccheck" depends="filter-src" |
| 130 |
description="Reports on javadoc style errors"> |
description="Reports on javadoc style errors (not working yet)"> |
| 131 |
<delete dir="${build.doccheck.dir}"/> |
<delete dir="${build.doccheck.dir}"/> |
| 132 |
<mkdir dir="${build.doccheck.dir}"/> |
<mkdir dir="${build.doccheck.dir}"/> |
| 133 |
<javadoc doclet="com.sun.tools.doclets.doccheck.DocCheck" |
<javadoc doclet="com.sun.tools.doclets.doccheck.DocCheck" |
| 134 |
docletpath="${lib.dir}/doccheck.jar" |
docletpath="${lib.dir}/doccheck.jar" |
| 135 |
destdir="${build.doccheck.dir}"> |
destdir="${build.doccheck.dir}"> |
| 136 |
<packageset dir="${build.filter.src.dir}"> |
<packageset dir="${build.filter.src.dir}"/> |
|
<include name="java/**"/> |
|
|
</packageset> |
|
| 137 |
</javadoc> |
</javadoc> |
| 138 |
</target> |
</target> |
| 139 |
|
|
| 151 |
<tag name="spec" description="Specified by:"/> |
<tag name="spec" description="Specified by:"/> |
| 152 |
<tag name="editor" description="Last edited by:"/> |
<tag name="editor" description="Last edited by:"/> |
| 153 |
<tag name="fixme" description="FIX ME:"/> |
<tag name="fixme" description="FIX ME:"/> |
| 154 |
<packageset dir="${build.filter.src.dir}"> |
<packageset dir="${build.filter.src.dir}"/> |
|
<include name="java/**"/> |
|
|
</packageset> |
|
| 155 |
|
|
| 156 |
</javadoc> |
</javadoc> |
| 157 |
</target> |
</target> |
| 158 |
|
|
| 159 |
|
|
| 160 |
|
<!-- |
| 161 |
|
# javac -s doesn't reliably generate compilable code. It generates |
| 162 |
|
# bridge methods (marked as "synthetic") that can have identical |
| 163 |
|
# signatures to existing methods except for the return value. |
| 164 |
|
--> |
| 165 |
<target name="strip" depends="init"> |
<target name="strip" depends="init"> |
| 166 |
<mkdir dir="${build.stripped.dir}"/> |
<mkdir dir="${build.stripped.dir}"/> |
| 167 |
<javac srcdir="${src.dir}" |
<javac srcdir="${src.dir}" |
| 175 |
<bootclasspath refid="javac.bootclasspath"/> |
<bootclasspath refid="javac.bootclasspath"/> |
| 176 |
<compilerarg line="${javac.args} ${build.warnings.option} -s"/> |
<compilerarg line="${javac.args} ${build.warnings.option} -s"/> |
| 177 |
|
|
|
<!-- need this because srcdir is basedir! --> |
|
|
<include name="java/**/*.java"/> |
|
|
|
|
| 178 |
</javac> |
</javac> |
| 179 |
</target> |
</target> |
| 180 |
|
|
| 200 |
<!-- Anthill targets --> |
<!-- Anthill targets --> |
| 201 |
|
|
| 202 |
<!-- Should really run the tests instead of just the jar target --> |
<!-- Should really run the tests instead of just the jar target --> |
| 203 |
<target name="anthill-build" depends="jar, docs, dist-docs" |
<target name="anthill-build" depends="jar, docs, dist-docs"/> |
|
description="Build the jar and both the external and internal docs"/> |
|
| 204 |
|
|
| 205 |
<target name="anthill-publish"> |
<target name="anthill-publish"> |
| 206 |
<copy todir="${deployDir}/docs/private"> |
<copy todir="${deployDir}/docs/private"> |
| 211 |
</copy> |
</copy> |
| 212 |
<copy tofile="${deployDir}/index.html" |
<copy tofile="${deployDir}/index.html" |
| 213 |
file="${basedir}/etc/anthill-index.html"/> |
file="${basedir}/etc/anthill-index.html"/> |
| 214 |
|
<copy todir="${deployDir}/notes"> |
| 215 |
|
<fileset dir="${basedir}/etc/notes"/> |
| 216 |
|
</copy> |
| 217 |
</target> |
</target> |
| 218 |
|
|
| 219 |
|
|
| 250 |
overview="${src.dir}/intro.html" |
overview="${src.dir}/intro.html" |
| 251 |
source="${build.sourcelevel}"> |
source="${build.sourcelevel}"> |
| 252 |
|
|
| 253 |
<packageset dir="${build.filter.src.dir}"> |
<packageset dir="${build.filter.src.dir}"/> |
|
<include name="java/**"/> |
|
|
</packageset> |
|
| 254 |
|
|
| 255 |
</javadoc> |
</javadoc> |
| 256 |
</target> |
</target> |
| 269 |
<mkdir dir="${build.filter.src.dir}"/> |
<mkdir dir="${build.filter.src.dir}"/> |
| 270 |
<copy todir="${build.filter.src.dir}"> |
<copy todir="${build.filter.src.dir}"> |
| 271 |
<fileset dir="${src.dir}"> |
<fileset dir="${src.dir}"> |
| 272 |
<include name="java/**/*.java"/> |
<include name="**/*.java"/> |
| 273 |
</fileset> |
</fileset> |
| 274 |
<filterchain> |
<filterchain> |
| 275 |
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
| 319 |
<bootclasspath refid="javac.bootclasspath"/> |
<bootclasspath refid="javac.bootclasspath"/> |
| 320 |
<compilerarg line="${javac.args} ${build.warnings.option}"/> |
<compilerarg line="${javac.args} ${build.warnings.option}"/> |
| 321 |
<classpath refid="test.classpath"/> |
<classpath refid="test.classpath"/> |
|
<include name="**/*Test.java"/> |
|
| 322 |
|
|
| 323 |
</javac> |
</javac> |
| 324 |
</target> |
</target> |
| 333 |
dir="${build.reports.dir}" |
dir="${build.reports.dir}" |
| 334 |
fork="true"> |
fork="true"> |
| 335 |
|
|
| 336 |
<jvmarg value="-Xbootclasspath/p:${product.jar}"/> |
<!-- |
| 337 |
|
! This nastiness is so JUnit can test classes we are inserting |
| 338 |
<classpath> |
! into the java.* packages. |
| 339 |
<!-- <path refid="test.classpath"/> --> |
--> |
| 340 |
<pathelement location="${build.testcases.dir}"/> |
<jvmarg value="-Xbootclasspath/p:${product.jar};${build.testcases.dir};${junit.jar}"/> |
|
</classpath> |
|
| 341 |
|
|
| 342 |
<formatter type="xml"/> |
<formatter type="xml"/> |
| 343 |
|
|
| 344 |
<batchtest todir="${build.reports.dir}"> |
<batchtest todir="${build.reports.dir}"> |
| 345 |
<fileset dir="${test.src.dir}"> |
<fileset dir="${test.src.dir}"> |
| 346 |
<include name="**/*Test.java"/> |
<include name="**/${testcase}Test.java"/> |
| 347 |
</fileset> |
</fileset> |
| 348 |
</batchtest> |
</batchtest> |
| 349 |
|
|
| 374 |
</target> |
</target> |
| 375 |
|
|
| 376 |
|
|
| 377 |
|
<target name="check-junit"> |
| 378 |
|
<!-- FIXME: this test isn't specific enough --> |
| 379 |
|
<available property="junit.available" |
| 380 |
|
classname="junit.framework.TestCase"/> |
| 381 |
|
<fail message="Need JUnit 3.8 to run tests" unless="junit.available"/> |
| 382 |
|
</target> |
| 383 |
|
|
| 384 |
|
|
| 385 |
</project> |
</project> |