| 1 |
<project name="jsr166" default="usage"> |
<project name="jsr166" default="usage"> |
| 2 |
|
|
| 3 |
<description> |
<description> |
| 4 |
|
------------------------------------------------------------------------------ |
| 5 |
Build file for JSR-166 |
Build file for JSR-166 |
| 6 |
|
|
| 7 |
JUnit 3.8 or better must be in ${ant.home}/lib for the test target to work. |
Usage: ant [target] |
|
</description> |
|
| 8 |
|
|
| 9 |
|
User-specific settings are read from user.properties. |
| 10 |
|
See user.properties.sample for examples. |
| 11 |
|
------------------------------------------------------------------------------ |
| 12 |
|
</description> |
| 13 |
|
|
| 14 |
<target name="usage" description="Prints this message"> |
<target name="usage" description="Advises user to run with -projecthelp"> |
| 15 |
<echo> |
<echo>Run "ant -projecthelp" for full usage information.</echo> |
|
ant [target], where target is one of: |
|
|
|
|
|
usage (default) Prints this message |
|
|
compile Compiles all sources to build folder |
|
|
jar Builds library jar from compiled sources |
|
|
test Runs all tests (requires JUnit 1.8 in ${ant.home}/lib) |
|
|
docs Builds javadocs with custom tags to build folder |
|
|
dist-docs Builds javadocs without custom tags to dist folder |
|
|
dist Puts all distributable products in single hierarchy |
|
|
|
|
|
clean Removes all build products |
|
|
dist-clean Removes all build and distribution products |
|
|
|
|
|
checkstyle Reports on style errors in Java source (verbose, mostly chaff) |
|
|
doccheck Reports on javadoc style errors (not working yet) |
|
|
</echo> |
|
| 16 |
</target> |
</target> |
| 17 |
|
|
| 18 |
|
|
| 19 |
<!-- User-specific settings --> |
<!-- User-specific settings --> |
| 20 |
<property file="user.properties"/> |
<property file="user.properties"/> |
| 21 |
|
|
|
<!-- Set build.warnings in user.properties to turn on -warnunchecked --> |
|
|
<!-- <property name="build.warnings" value=""/> --> |
|
|
|
|
| 22 |
|
|
| 23 |
<!-- Compilation options --> |
<!-- Compilation options --> |
| 24 |
<property name="build.sourcelevel" value="1.5"/> |
<property name="build.sourcelevel" value="1.5"/> |
| 60 |
<property name="rt.jar" location="${java.home}/lib/rt.jar"/> |
<property name="rt.jar" location="${java.home}/lib/rt.jar"/> |
| 61 |
|
|
| 62 |
|
|
| 63 |
|
|
| 64 |
<!-- |
<!-- |
| 65 |
! Bootclasspath munging for source compilation. |
! Bootclasspath munging for source compilation. |
| 66 |
--> |
--> |
| 67 |
|
|
| 68 |
<path id="javac.bootclasspath.prepend"> |
<path id="javac.bootclasspath.prefix"> |
| 69 |
<!-- <pathelement location="${src.dir}"/> --> |
<!-- <pathelement location="${src.dir}"/> --> |
| 70 |
<pathelement location="${javac.jar}"/> |
<pathelement location="${javac.jar}"/> |
| 71 |
</path> |
</path> |
| 77 |
</path> |
</path> |
| 78 |
|
|
| 79 |
<!-- Flatten bootclasspath prefix into a platform-appropriate string --> |
<!-- Flatten bootclasspath prefix into a platform-appropriate string --> |
| 80 |
<property name="javac.bootclasspath.prepend" refid="javac.bootclasspath.prepend"/> |
<property name="javac.bootclasspath.prefix" refid="javac.bootclasspath.prefix"/> |
| 81 |
|
|
| 82 |
<!-- Turn the flattened bootclasspath prefix into a javac argument --> |
<!-- Turn the flattened bootclasspath prefix into a javac argument --> |
| 83 |
<property name="javac.args" value='-J-Xbootclasspath/p:${javac.bootclasspath.prepend}'/> |
<property name="javac.args" value='-J-Xbootclasspath/p:${javac.bootclasspath.prefix}'/> |
| 84 |
|
|
| 85 |
|
|
| 86 |
|
|
| 87 |
<!-- |
<!-- |
| 103 |
|
|
| 104 |
|
|
| 105 |
|
|
| 106 |
|
<!-- Files excluded from emulation and dist-docs --> |
| 107 |
|
<patternset id="emulation.excludes"> |
| 108 |
|
<exclude name="java/util/Random.*"/> |
| 109 |
|
<exclude name="sun/misc/Unsafe.*"/> |
| 110 |
|
</patternset> |
| 111 |
|
|
| 112 |
|
|
| 113 |
|
|
| 114 |
<!-- Main targets --> |
<!-- Main targets --> |
| 115 |
|
|
| 116 |
<target name="compile" depends="init" |
<target name="compile" |
| 117 |
|
depends="init" |
| 118 |
description="Compiles main sources to build folder"> |
description="Compiles main sources to build folder"> |
| 119 |
|
|
| 120 |
<mkdir dir="${build.classes.dir}"/> |
<mkdir dir="${build.classes.dir}"/> |
| 135 |
</target> |
</target> |
| 136 |
|
|
| 137 |
|
|
| 138 |
<target name="jar" depends="native-jar, emulation-jar"/> |
<target name="jar" |
| 139 |
|
depends="check-emulation, init-jar, native-jar, emulation-jar" |
| 140 |
|
description="Builds library jar from compiled sources"/> |
| 141 |
|
|
| 142 |
|
|
| 143 |
<target name="test" depends="init, check-junit, report-tests" |
<target name="test" |
| 144 |
description="Runs all tests (requires JUnit 3.8+ in ${ant.home}/lib)" |
depends="init, check-junit, report-tests" |
| 145 |
/> |
description="Runs all tests (requires JUnit 3.8.1 in ${ant.home}/lib)" /> |
| 146 |
|
|
| 147 |
|
|
| 148 |
<target name="checkstyle" depends="filter-src" |
<target name="checkstyle" |
| 149 |
|
depends="filter-src" |
| 150 |
description="Reports on style errors in Java source (verbose, mostly chaff)"> |
description="Reports on style errors in Java source (verbose, mostly chaff)"> |
| 151 |
|
|
| 152 |
<taskdef resource="checkstyletask.properties" |
<taskdef resource="checkstyletask.properties" |
| 160 |
</target> |
</target> |
| 161 |
|
|
| 162 |
|
|
| 163 |
<target name="doccheck" depends="filter-src" |
<target name="doccheck" |
| 164 |
|
depends="filter-src" |
| 165 |
description="Reports on javadoc style errors (not working yet)"> |
description="Reports on javadoc style errors (not working yet)"> |
| 166 |
|
|
| 167 |
<delete dir="${build.doccheck.dir}"/> |
<delete dir="${build.doccheck.dir}"/> |
| 176 |
</target> |
</target> |
| 177 |
|
|
| 178 |
|
|
| 179 |
<target name="docs" depends="filter-src" |
<target name="docs" |
| 180 |
|
depends="filter-src" |
| 181 |
description="Builds javadocs with custom tags to build folder"> |
description="Builds javadocs with custom tags to build folder"> |
| 182 |
|
|
| 183 |
<delete dir="${build.javadocs.dir}"/> |
<delete dir="${build.javadocs.dir}"/> |
| 192 |
<tag name="spec" description="Specified by:"/> |
<tag name="spec" description="Specified by:"/> |
| 193 |
<tag name="editor" description="Last edited by:"/> |
<tag name="editor" description="Last edited by:"/> |
| 194 |
<tag name="fixme" description="FIX ME:"/> |
<tag name="fixme" description="FIX ME:"/> |
| 195 |
|
|
| 196 |
<packageset dir="${build.filter.src.dir}"/> |
<packageset dir="${build.filter.src.dir}"/> |
| 197 |
|
|
| 198 |
</javadoc> |
</javadoc> |
| 205 |
# bridge methods (marked as "synthetic") that can have identical |
# bridge methods (marked as "synthetic") that can have identical |
| 206 |
# signatures to existing methods except for the return value. |
# signatures to existing methods except for the return value. |
| 207 |
--> |
--> |
| 208 |
<target name="strip" depends="init"> |
<target name="strip" |
| 209 |
|
depends="init"> |
| 210 |
|
|
| 211 |
<mkdir dir="${build.stripped.dir}"/> |
<mkdir dir="${build.stripped.dir}"/> |
| 212 |
|
|
| 226 |
</target> |
</target> |
| 227 |
|
|
| 228 |
|
|
| 229 |
<target name="dist" depends="init, dist-clean, dist-jar, dist-docs" |
<target name="dist" |
| 230 |
|
depends="init, dist-clean, dist-jar, dist-docs" |
| 231 |
description="Puts all distributable products in single hierarchy"/> |
description="Puts all distributable products in single hierarchy"/> |
| 232 |
|
|
| 233 |
|
|
| 249 |
</target> |
</target> |
| 250 |
|
|
| 251 |
|
|
| 252 |
<!-- Anthill targets --> |
<target name="dist-docs" |
| 253 |
|
depends="filter-src" |
| 254 |
|
description="Builds javadocs without custom tags to dist folder"> |
| 255 |
|
|
| 256 |
<!-- Should really run the tests instead of just the jar target --> |
<delete dir="${dist.javadocs.dir}"/> |
| 257 |
<target name="anthill-build" depends="jar, test, docs, dist-docs"/> |
<mkdir dir="${dist.javadocs.dir}"/> |
| 258 |
|
|
| 259 |
|
<javadoc destdir="${dist.javadocs.dir}" |
| 260 |
|
link="http://java.sun.com/j2se/1.4.1/docs/api" |
| 261 |
|
overview="${src.dir}/intro.html" |
| 262 |
|
source="${build.docsourcelevel}"> |
| 263 |
|
|
| 264 |
|
<packageset dir="${build.filter.src.dir}"/> |
| 265 |
|
|
| 266 |
|
</javadoc> |
| 267 |
|
|
|
<target name="anthill-publish"> |
|
|
<copy todir="${deployDir}/docs/private"> |
|
|
<fileset dir="${build.javadocs.dir}"/> |
|
|
</copy> |
|
|
<copy todir="${deployDir}/docs/public"> |
|
|
<fileset dir="${dist.javadocs.dir}"/> |
|
|
</copy> |
|
|
<copy tofile="${deployDir}/index.html" |
|
|
file="${basedir}/etc/anthill-index.html"/> |
|
|
<copy todir="${deployDir}/notes"> |
|
|
<fileset dir="${basedir}/etc/notes"/> |
|
|
</copy> |
|
| 268 |
</target> |
</target> |
| 269 |
|
|
| 270 |
|
|
| 271 |
|
|
| 272 |
<!-- Internal targets --> |
<!-- Internal targets --> |
| 273 |
|
|
| 274 |
<target name="set-warnings-if" if="build.warnings"> |
<target name="set-warnings-if" if="build.warnings"> |
| 285 |
</target> |
</target> |
| 286 |
|
|
| 287 |
|
|
| 288 |
<target name="init" depends="set-warnings-if, set-warnings-unless"> |
<target name="init" |
| 289 |
|
depends="set-warnings-if, set-warnings-unless"> |
| 290 |
|
|
| 291 |
<!-- Version is kept in a separate file --> |
<!-- Version is kept in a separate file --> |
| 292 |
<loadfile property="version" srcFile="version.properties"/> |
<loadfile property="version" srcFile="version.properties"/> |
| 295 |
</target> |
</target> |
| 296 |
|
|
| 297 |
|
|
| 298 |
<target name="native-jar" depends="compile" |
<target name="init-jar"> |
|
description="Builds library jar from compiled sources"> |
|
| 299 |
|
|
| 300 |
<mkdir dir="${build.lib.dir}"/> |
<mkdir dir="${build.lib.dir}"/> |
| 301 |
|
|
| 302 |
|
</target> |
| 303 |
|
|
| 304 |
|
|
| 305 |
|
<target name="native-jar" |
| 306 |
|
depends="compile" |
| 307 |
|
unless="build.emulation.true"> |
| 308 |
|
|
| 309 |
<jar destfile="${product.jar}"> |
<jar destfile="${product.jar}"> |
| 310 |
<fileset dir="${build.classes.dir}"/> |
<fileset dir="${build.classes.dir}"/> |
| 311 |
</jar> |
</jar> |
| 313 |
</target> |
</target> |
| 314 |
|
|
| 315 |
|
|
| 316 |
<target name="compile-emulation" depends="init" |
<target name="compile-emulation" |
| 317 |
if="build.emulation" |
depends="init" |
| 318 |
description="Compiles emulation sources to build folder"> |
if="build.emulation.true"> |
| 319 |
|
|
| 320 |
<mkdir dir="${build.emulation.dir}"/> |
<mkdir dir="${build.emulation.dir}"/> |
| 321 |
|
|
| 335 |
</target> |
</target> |
| 336 |
|
|
| 337 |
|
|
| 338 |
<target name="emulation-jar" depends="native-jar, compile-emulation" |
<target name="emulation-jar" |
| 339 |
if="build.emulation"> |
depends="compile-emulation" |
| 340 |
|
if="build.emulation.true"> |
| 341 |
|
|
| 342 |
<jar destfile="${product.jar}" update="true" duplicate="add"> |
|
| 343 |
|
<jar destfile="${product.jar}" duplicate="add"> |
| 344 |
|
<fileset dir="${build.classes.dir}"> |
| 345 |
|
<patternset refid="emulation.excludes"/> |
| 346 |
|
</fileset> |
| 347 |
<fileset dir="${build.emulation.dir}"/> |
<fileset dir="${build.emulation.dir}"/> |
| 348 |
</jar> |
</jar> |
| 349 |
|
|
| 350 |
</target> |
</target> |
| 351 |
|
|
| 352 |
|
|
| 353 |
<target name="dist-jar" depends="clean, jar"> |
<target name="dist-jar" |
| 354 |
|
depends="clean, jar"> |
| 355 |
|
|
| 356 |
<copy file="${product.jar}" todir="${dist.dir}"/> |
<copy file="${product.jar}" todir="${dist.dir}"/> |
| 357 |
|
|
| 358 |
</target> |
</target> |
| 359 |
|
|
| 360 |
|
|
| 361 |
<target name="dist-docs" depends="filter-src" |
<target name="compile-ant-filter" |
| 362 |
description="Builds javadocs without custom tags to dist folder"> |
depends="init"> |
|
|
|
|
<delete dir="${dist.javadocs.dir}"/> |
|
|
<mkdir dir="${dist.javadocs.dir}"/> |
|
|
|
|
|
<javadoc destdir="${dist.javadocs.dir}" |
|
|
link="http://java.sun.com/j2se/1.4.1/docs/api" |
|
|
overview="${src.dir}/intro.html" |
|
|
source="${build.docsourcelevel}"> |
|
|
|
|
|
<packageset dir="${build.filter.src.dir}"/> |
|
|
|
|
|
</javadoc> |
|
|
|
|
|
</target> |
|
|
|
|
|
|
|
|
<target name="compile-ant-filter" depends="init"> |
|
| 363 |
|
|
| 364 |
<mkdir dir="${build.ant.dir}"/> |
<mkdir dir="${build.ant.dir}"/> |
| 365 |
|
|
| 371 |
</target> |
</target> |
| 372 |
|
|
| 373 |
|
|
| 374 |
<target name="filter-src" depends="compile-ant-filter"> |
<target name="filter-src" |
| 375 |
|
depends="compile-ant-filter"> |
| 376 |
|
|
| 377 |
<mkdir dir="${build.filter.src.dir}"/> |
<mkdir dir="${build.filter.src.dir}"/> |
| 378 |
|
|
| 379 |
<copy todir="${build.filter.src.dir}"> |
<copy todir="${build.filter.src.dir}"> |
| 380 |
<fileset dir="${src.dir}"> |
<fileset dir="${src.dir}"> |
| 381 |
<include name="**/*.java"/> |
<patternset refid="emulation.excludes"/> |
|
<exclude name="**/Random.java"/> |
|
|
<exclude name="**/Unsafe.java"/> |
|
| 382 |
</fileset> |
</fileset> |
| 383 |
<filterchain> |
<filterchain> |
| 384 |
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
| 416 |
</target> |
</target> |
| 417 |
|
|
| 418 |
|
|
| 419 |
<target name="compile-tests" depends="jar"> |
<target name="compile-tests" |
| 420 |
|
depends="jar"> |
| 421 |
|
|
| 422 |
<mkdir dir="${build.testcases.dir}"/> |
<mkdir dir="${build.testcases.dir}"/> |
| 423 |
|
|
| 438 |
</target> |
</target> |
| 439 |
|
|
| 440 |
|
|
| 441 |
<target name="run-tests" depends="compile-tests"> |
<target name="run-tests" |
| 442 |
|
depends="compile-tests"> |
| 443 |
|
|
| 444 |
<!-- May be overridden by user.properties --> |
<!-- May be overridden by user.properties --> |
| 445 |
<property name="testcase" value="*"/> |
<property name="testcase" value="*"/> |
| 468 |
</target> |
</target> |
| 469 |
|
|
| 470 |
|
|
| 471 |
<target name="report-tests" depends="run-tests"> |
<target name="report-tests" |
| 472 |
|
depends="run-tests"> |
| 473 |
|
|
| 474 |
<!-- Sets junit.report.format to frames if Xalan is present, |
<!-- Sets junit.report.format to frames if Xalan is present, |
| 475 |
otherwise sets it to noframes. --> |
otherwise sets it to noframes. --> |
| 476 |
<available property="junit.report.format" |
<available property="junit.report.format" |
| 490 |
</junitreport> |
</junitreport> |
| 491 |
|
|
| 492 |
<fail message="Test Cases Failed" if="junit.failed"/> |
<fail message="Test Cases Failed" if="junit.failed"/> |
| 493 |
|
|
| 494 |
</target> |
</target> |
| 495 |
|
|
| 496 |
|
|
| 497 |
<target name="check-junit"> |
<target name="check-junit"> |
| 498 |
<!-- FIXME: this test isn't specific enough --> |
|
| 499 |
|
<!-- junit.framework.Protectable is in JUnit 3.8.1 but not in 3.7 --> |
| 500 |
<available property="junit.available" |
<available property="junit.available" |
| 501 |
classname="junit.framework.TestCase"/> |
classname="junit.framework.Protectable"/> |
| 502 |
<fail message="Need JUnit 3.8 to run tests" unless="junit.available"/> |
|
| 503 |
|
<fail message="Need JUnit 3.8.1 in ${ant.home}${file.separator}lib to run tests" |
| 504 |
|
unless="junit.available"/> |
| 505 |
|
|
| 506 |
|
</target> |
| 507 |
|
|
| 508 |
|
|
| 509 |
|
<target name="check-emulation"> |
| 510 |
|
<condition property="build.emulation.true"> |
| 511 |
|
<or> |
| 512 |
|
<isset property="build.emulation"/> |
| 513 |
|
<os family="windows"/> |
| 514 |
|
</or> |
| 515 |
|
</condition> |
| 516 |
|
</target> |
| 517 |
|
|
| 518 |
|
|
| 519 |
|
|
| 520 |
|
<!-- Anthill targets --> |
| 521 |
|
|
| 522 |
|
<target name="anthill-build" |
| 523 |
|
depends="jar, test, docs, dist-docs"/> |
| 524 |
|
|
| 525 |
|
<target name="anthill-publish"> |
| 526 |
|
|
| 527 |
|
<copy todir="${deployDir}/docs/private"> |
| 528 |
|
<fileset dir="${build.javadocs.dir}"/> |
| 529 |
|
</copy> |
| 530 |
|
|
| 531 |
|
<copy todir="${deployDir}/docs/public"> |
| 532 |
|
<fileset dir="${dist.javadocs.dir}"/> |
| 533 |
|
</copy> |
| 534 |
|
|
| 535 |
|
<copy tofile="${deployDir}/index.html" |
| 536 |
|
file="${basedir}/etc/anthill-index.html"/> |
| 537 |
|
|
| 538 |
|
<copy todir="${deployDir}/notes"> |
| 539 |
|
<fileset dir="${basedir}/etc/notes"/> |
| 540 |
|
</copy> |
| 541 |
|
|
| 542 |
</target> |
</target> |
| 543 |
|
|
| 544 |
|
|