| 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 an explanation of some useful settings. |
| 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"/> |
|
<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.lib.dir" location="${build.dir}/lib"/> |
<property name="build.lib.dir" location="${build.dir}/lib"/> |
| 34 |
<property name="build.ant.dir" location="${build.dir}/ant"/> |
<property name="build.ant.dir" location="${build.dir}/ant"/> |
| 35 |
<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"/> |
|
| 36 |
<property name="build.reports.dir" location="${build.dir}/reports"/> |
<property name="build.reports.dir" location="${build.dir}/reports"/> |
| 37 |
|
<property name="build.checkstyle.dir" location="${build.dir}/checkstyle"/> |
| 38 |
<property name="build.doccheck.dir" location="${build.dir}/doccheck"/> |
<property name="build.doccheck.dir" location="${build.dir}/doccheck"/> |
| 39 |
<property name="build.filter.src.dir" location="${build.dir}/filtersrc"/> |
<property name="build.filter.src.dir" location="${build.dir}/filtersrc"/> |
| 40 |
|
<property name="build.dc-filter.dir" location="${build.dir}/filterdocchk"/> |
| 41 |
|
|
| 42 |
<!-- Source locations --> |
<!-- Source locations --> |
| 43 |
<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"/> |
|
| 44 |
<property name="test.src.dir" location="${basedir}/src/test"/> |
<property name="test.src.dir" location="${basedir}/src/test"/> |
| 45 |
|
<property name="tck.src.dir" location="${test.src.dir}/tck"/> |
| 46 |
|
<property name="jtreg.src.dir" location="${test.src.dir}/jtreg"/> |
| 47 |
<property name="ant.src.dir" location="${basedir}/etc/ant"/> |
<property name="ant.src.dir" location="${basedir}/etc/ant"/> |
| 48 |
<property name="stylesheet.dir" location="${basedir}/etc/xsl"/> |
<property name="stylesheet.dir" location="${basedir}/etc/xsl"/> |
| 49 |
<property name="lib.dir" location="${basedir}/lib"/> |
<property name="lib.dir" location="${basedir}/lib"/> |
| 54 |
|
|
| 55 |
<!-- Jar locations --> |
<!-- Jar locations --> |
| 56 |
<property name="product.jar" location="${build.lib.dir}/jsr166.jar"/> |
<property name="product.jar" location="${build.lib.dir}/jsr166.jar"/> |
|
<property name="javac.jar" location="${lib.dir}/javac.jar"/> |
|
|
<property name="collect.jar" location="${lib.dir}/collect.jar"/> |
|
| 57 |
<property name="junit.jar" location="${lib.dir}/junit.jar"/> |
<property name="junit.jar" location="${lib.dir}/junit.jar"/> |
|
<property name="rt.jar" location="${java.home}/lib/rt.jar"/> |
|
|
|
|
|
|
|
|
|
|
|
<!-- |
|
|
! Bootclasspath munging for source compilation. |
|
|
--> |
|
|
|
|
|
<path id="javac.bootclasspath.prefix"> |
|
|
<!-- <pathelement location="${src.dir}"/> --> |
|
|
<pathelement location="${javac.jar}"/> |
|
|
</path> |
|
| 58 |
|
|
| 59 |
<path id="javac.bootclasspath"> |
<!-- Bootclasspath argument --> |
| 60 |
<!-- <pathelement location="${src.dir}"/> --> |
<property name="bootclasspath.args" value="-Xbootclasspath/p:${product.jar}"/> |
|
<pathelement location="${collect.jar}"/> |
|
|
<pathelement location="${rt.jar}"/> |
|
|
</path> |
|
|
|
|
|
<!-- Flatten bootclasspath prefix into a platform-appropriate string --> |
|
|
<property name="javac.bootclasspath.prefix" refid="javac.bootclasspath.prefix"/> |
|
|
|
|
|
<!-- Turn the flattened bootclasspath prefix into a javac argument --> |
|
|
<property name="javac.args" value='-J-Xbootclasspath/p:${javac.bootclasspath.prefix}'/> |
|
|
|
|
|
|
|
|
|
|
|
<!-- |
|
|
! Bootclasspath munging for testing, so JUnit can test our local |
|
|
! modifications to java.*. |
|
|
--> |
|
| 61 |
|
|
| 62 |
|
<!-- Test classpath --> |
| 63 |
<path id="test.classpath"> |
<path id="test.classpath"> |
|
<pathelement location="${product.jar}"/> |
|
| 64 |
<pathelement location="${build.testcases.dir}"/> |
<pathelement location="${build.testcases.dir}"/> |
| 65 |
<pathelement location="${junit.jar}"/> |
<pathelement location="${junit.jar}"/> |
| 66 |
</path> |
</path> |
| 67 |
|
|
|
<!-- Flatten test classpath into a platform-appropriate string --> |
|
|
<property name="test.classpath" refid="test.classpath"/> |
|
|
|
|
|
<!-- Turn the flattened test classpath into a javac argument --> |
|
|
<property name="test.javac.args" value='-Xbootclasspath/p:${test.classpath}'/> |
|
|
|
|
|
|
|
|
|
|
|
<!-- Files excluded from emulation and dist-docs --> |
|
|
<patternset id="emulation.excludes"> |
|
|
<exclude name="java/util/Random.*"/> |
|
|
<exclude name="sun/misc/Unsafe.*"/> |
|
|
</patternset> |
|
|
|
|
|
|
|
| 68 |
|
|
| 69 |
<!-- Main targets --> |
<!-- Main targets --> |
| 70 |
|
|
| 71 |
|
|
| 72 |
<target name="compile" |
<target name="compile" |
| 73 |
depends="init" |
depends="init, configure-compiler" |
| 74 |
description="Compiles main sources to build folder"> |
description="Compiles main sources to build folder"> |
| 75 |
|
|
| 76 |
<mkdir dir="${build.classes.dir}"/> |
<mkdir dir="${build.classes.dir}"/> |
| 83 |
source="${build.sourcelevel}" |
source="${build.sourcelevel}" |
| 84 |
fork="true"> |
fork="true"> |
| 85 |
|
|
| 86 |
<bootclasspath refid="javac.bootclasspath"/> |
<compilerarg line="${build.args}"/> |
|
<compilerarg line="${javac.args} ${build.warnings.option}"/> |
|
| 87 |
|
|
| 88 |
</javac> |
</javac> |
| 89 |
|
|
| 90 |
</target> |
</target> |
| 91 |
|
|
| 92 |
|
|
| 93 |
|
|
| 94 |
<target name="jar" |
<target name="jar" |
| 95 |
depends="native-jar, emulation-jar" |
depends="compile" |
| 96 |
description="Builds library jar from compiled sources"/> |
description="Builds library jar from compiled sources"> |
| 97 |
|
|
| 98 |
|
<mkdir dir="${build.lib.dir}"/> |
| 99 |
|
|
| 100 |
|
<jar destfile="${product.jar}"> |
| 101 |
|
<fileset dir="${build.classes.dir}"/> |
| 102 |
|
</jar> |
| 103 |
|
|
| 104 |
|
</target> |
| 105 |
|
|
| 106 |
|
|
| 107 |
|
|
| 108 |
<target name="test" |
<target name="test" |
| 109 |
depends="init, check-junit, report-tests" |
depends="init, configure-tests, report-tests" |
| 110 |
description="Runs all tests (requires JUnit 3.8+ in ${ant.home}/lib)" /> |
description="Runs all tests (requires JUnit 3.8.1 in ${ant.home}/lib)" /> |
| 111 |
|
|
| 112 |
|
|
|
<target name="checkstyle" |
|
|
depends="filter-src" |
|
|
description="Reports on style errors in Java source (verbose, mostly chaff)"> |
|
| 113 |
|
|
| 114 |
<taskdef resource="checkstyletask.properties" |
<target name="docs" |
| 115 |
classpath="${lib.dir}/checkstyle-all-2.4.jar"/> |
description="Builds javadocs with custom tags to build folder"> |
| 116 |
|
|
| 117 |
<checkstyle> |
<delete dir="${build.javadocs.dir}"/> |
| 118 |
<formatter type="plain"/> <!-- also available: type="xml" --> |
<mkdir dir="${build.javadocs.dir}"/> |
| 119 |
<fileset dir="${build.filter.src.dir}" includes="**/*.java"/> |
|
| 120 |
</checkstyle> |
<javadoc destdir="${build.javadocs.dir}" |
| 121 |
|
link="http://java.sun.com/j2se/1.4.1/docs/api" |
| 122 |
|
overview="${src.dir}/intro.html" |
| 123 |
|
source="${build.sourcelevel}"> |
| 124 |
|
|
| 125 |
|
<tag name="revised" description="Last revised:"/> |
| 126 |
|
<tag name="spec" description="Specified by:"/> |
| 127 |
|
|
| 128 |
|
<packageset dir="${src.dir}"/> |
| 129 |
|
|
| 130 |
|
</javadoc> |
| 131 |
|
|
| 132 |
</target> |
</target> |
| 133 |
|
|
| 134 |
|
|
| 135 |
|
|
| 136 |
<target name="doccheck" |
<target name="doccheck" |
| 137 |
depends="filter-src" |
depends="filter-doccheck" |
| 138 |
description="Reports on javadoc style errors (not working yet)"> |
description="Reports on javadoc style errors"> |
| 139 |
|
|
| 140 |
<delete dir="${build.doccheck.dir}"/> |
<delete dir="${build.doccheck.dir}"/> |
| 141 |
<mkdir dir="${build.doccheck.dir}"/> |
<mkdir dir="${build.doccheck.dir}"/> |
| 143 |
<javadoc doclet="com.sun.tools.doclets.doccheck.DocCheck" |
<javadoc doclet="com.sun.tools.doclets.doccheck.DocCheck" |
| 144 |
docletpath="${lib.dir}/doccheck.jar" |
docletpath="${lib.dir}/doccheck.jar" |
| 145 |
destdir="${build.doccheck.dir}"> |
destdir="${build.doccheck.dir}"> |
| 146 |
<packageset dir="${build.filter.src.dir}"/> |
<packageset dir="${build.dc-filter.dir}"/> |
| 147 |
</javadoc> |
</javadoc> |
| 148 |
|
|
| 149 |
|
<echo>DocCheck output is in ${build.doccheck.dir}</echo> |
| 150 |
|
|
| 151 |
</target> |
</target> |
| 152 |
|
|
| 153 |
|
|
| 154 |
<target name="docs" |
|
| 155 |
|
<target name="checkstyle" |
| 156 |
depends="filter-src" |
depends="filter-src" |
| 157 |
description="Builds javadocs with custom tags to build folder"> |
description="Reports on style errors in Java source (verbose, mostly chaff)"> |
| 158 |
|
|
| 159 |
<delete dir="${build.javadocs.dir}"/> |
<taskdef resource="checkstyletask.properties" |
| 160 |
<mkdir dir="${build.javadocs.dir}"/> |
classpath="${lib.dir}/checkstyle-all-3.1.jar"/> |
| 161 |
|
|
| 162 |
<javadoc destdir="${build.javadocs.dir}" |
<mkdir dir="${build.checkstyle.dir}"/> |
|
link="http://java.sun.com/j2se/1.4.1/docs/api" |
|
|
overview="${src.dir}/intro.html" |
|
|
source="${build.docsourcelevel}"> |
|
| 163 |
|
|
| 164 |
<tag name="revised" description="Last revised:"/> |
<checkstyle config="etc/checkstyle/sun_checks.xml" |
| 165 |
<tag name="spec" description="Specified by:"/> |
failOnViolation="false"> |
| 166 |
<tag name="editor" description="Last edited by:"/> |
<formatter type="xml" toFile="${build.checkstyle.dir}/checkstyle-report.xml"/> |
| 167 |
<tag name="fixme" description="FIX ME:"/> |
<fileset dir="${build.filter.src.dir}" includes="**/*.java"/> |
| 168 |
<packageset dir="${build.filter.src.dir}"/> |
</checkstyle> |
| 169 |
|
|
| 170 |
</javadoc> |
<style in="${build.checkstyle.dir}/checkstyle-report.xml" |
| 171 |
|
out="${build.checkstyle.dir}/checkstyle-report.html" |
| 172 |
|
style="${stylesheet.dir}/checkstyle-frames.xsl"/> |
| 173 |
|
|
| 174 |
</target> |
</target> |
| 175 |
|
|
| 176 |
|
|
|
<!-- |
|
|
# javac -s doesn't reliably generate compilable code. It generates |
|
|
# bridge methods (marked as "synthetic") that can have identical |
|
|
# signatures to existing methods except for the return value. |
|
|
--> |
|
|
<target name="strip" |
|
|
depends="init"> |
|
| 177 |
|
|
| 178 |
<mkdir dir="${build.stripped.dir}"/> |
<target name="dist" |
| 179 |
|
depends="init, dist-clean, dist-jar, dist-docs" |
| 180 |
|
description="Puts all distributable products in single hierarchy"/> |
| 181 |
|
|
|
<javac srcdir="${src.dir}" |
|
|
destdir="${build.stripped.dir}" |
|
|
debug="${build.debug}" |
|
|
debuglevel="${build.debuglevel}" |
|
|
deprecation="${build.deprecation}" |
|
|
source="${build.sourcelevel}" |
|
|
fork="true"> |
|
| 182 |
|
|
|
<bootclasspath refid="javac.bootclasspath"/> |
|
|
<compilerarg line="${javac.args} ${build.warnings.option} -s"/> |
|
| 183 |
|
|
| 184 |
</javac> |
<target name="release" |
| 185 |
|
depends="dist" |
| 186 |
|
description="Puts entire CVS tree, plus distribution productions, in a jar"> |
| 187 |
|
|
| 188 |
|
<property name="release.jar" value="dist/jsr166-${version}-dist.jar"/> |
| 189 |
|
|
| 190 |
|
<jar basedir="${basedir}" destfile="${release.jar}"> |
| 191 |
|
<!-- <exclude name="build/**"/> --> |
| 192 |
|
<exclude name="${release.jar}"/> |
| 193 |
|
<exclude name="user.properties"/> |
| 194 |
|
<exclude name="etc/notes/**"/> |
| 195 |
|
<exclude name="src/emulation/**"/> |
| 196 |
|
<exclude name="**/SyntaxTest.java"/> |
| 197 |
|
<exclude name="**/SuperfluousAbstract.java"/> |
| 198 |
|
</jar> |
| 199 |
|
|
| 200 |
</target> |
</target> |
| 201 |
|
|
| 202 |
|
|
|
<target name="dist" |
|
|
depends="init, dist-clean, dist-jar, dist-docs" |
|
|
description="Puts all distributable products in single hierarchy"/> |
|
|
|
|
| 203 |
|
|
| 204 |
<target name="clean" |
<target name="clean" |
| 205 |
description="Removes all build products"> |
description="Removes all build products"> |
| 211 |
</target> |
</target> |
| 212 |
|
|
| 213 |
|
|
| 214 |
|
|
| 215 |
<target name="dist-clean" |
<target name="dist-clean" |
| 216 |
description="Removes all build and distribution products"> |
description="Removes all build and distribution products"> |
| 217 |
|
|
| 220 |
</target> |
</target> |
| 221 |
|
|
| 222 |
|
|
| 223 |
|
|
| 224 |
<target name="dist-docs" |
<target name="dist-docs" |
|
depends="filter-src" |
|
| 225 |
description="Builds javadocs without custom tags to dist folder"> |
description="Builds javadocs without custom tags to dist folder"> |
| 226 |
|
|
| 227 |
<delete dir="${dist.javadocs.dir}"/> |
<delete dir="${dist.javadocs.dir}"/> |
| 228 |
<mkdir dir="${dist.javadocs.dir}"/> |
<mkdir dir="${dist.javadocs.dir}"/> |
| 229 |
|
|
| 230 |
<javadoc destdir="${dist.javadocs.dir}" |
<javadoc destdir="${dist.javadocs.dir}" |
| 231 |
link="http://java.sun.com/j2se/1.4.1/docs/api" |
link="http://java.sun.com/j2se/1.4.2/docs/api" |
| 232 |
overview="${src.dir}/intro.html" |
overview="${src.dir}/intro.html" |
| 233 |
source="${build.docsourcelevel}"> |
source="${build.sourcelevel}"> |
| 234 |
|
|
| 235 |
<packageset dir="${build.filter.src.dir}"/> |
<packageset dir="${src.dir}"/> |
| 236 |
|
|
| 237 |
</javadoc> |
</javadoc> |
| 238 |
|
|
| 242 |
|
|
| 243 |
<!-- Internal targets --> |
<!-- Internal targets --> |
| 244 |
|
|
|
<target name="set-warnings-if" if="build.warnings"> |
|
|
|
|
|
<property name="build.warnings.option" value="-warnunchecked"/> |
|
|
|
|
|
</target> |
|
|
|
|
|
|
|
|
<target name="set-warnings-unless" unless="build.warnings"> |
|
|
|
|
|
<property name="build.warnings.option" value=""/> |
|
|
|
|
|
</target> |
|
|
|
|
| 245 |
|
|
| 246 |
<target name="init" |
<target name="init"> |
|
depends="set-warnings-if, set-warnings-unless"> |
|
| 247 |
|
|
| 248 |
<!-- Version is kept in a separate file --> |
<!-- Version is kept in a separate file --> |
| 249 |
<loadfile property="version" srcFile="version.properties"/> |
<loadfile property="version" srcFile="version.properties"/> |
| 250 |
<echo>Building JSR-166 version ${version}</echo> |
<echo>Building JSR-166 version ${version}</echo> |
| 251 |
|
<echo>java.home is ${java.home}</echo> |
|
</target> |
|
|
|
|
|
|
|
|
<target name="init-jar"> |
|
|
|
|
|
<mkdir dir="${build.lib.dir}"/> |
|
|
|
|
|
</target> |
|
|
|
|
|
|
|
|
<target name="native-jar" |
|
|
depends="compile, init-jar" |
|
|
unless="build.emulation"> |
|
|
|
|
|
<jar destfile="${product.jar}"> |
|
|
<fileset dir="${build.classes.dir}"/> |
|
|
</jar> |
|
|
|
|
|
</target> |
|
|
|
|
|
|
|
|
<target name="base-jar" |
|
|
depends="compile, init-jar"> |
|
|
|
|
|
<jar destfile="${product.jar}"> |
|
|
<fileset dir="${build.classes.dir}"> |
|
|
<patternset refid="emulation.excludes"/> |
|
|
</fileset> |
|
|
</jar> |
|
|
|
|
|
</target> |
|
|
|
|
|
|
|
|
<target name="compile-emulation" |
|
|
depends="init" |
|
|
if="build.emulation"> |
|
|
|
|
|
<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"> |
|
|
|
|
|
<bootclasspath refid="javac.bootclasspath"/> |
|
|
<compilerarg line="${javac.args} ${build.warnings.option}"/> |
|
|
|
|
|
</javac> |
|
|
|
|
|
</target> |
|
|
|
|
|
|
|
|
<target name="emulation-jar" |
|
|
depends="base-jar, compile-emulation" |
|
|
if="build.emulation"> |
|
|
|
|
|
<jar destfile="${product.jar}" update="true" duplicate="add"> |
|
|
<fileset dir="${build.emulation.dir}"/> |
|
|
</jar> |
|
| 252 |
|
|
| 253 |
</target> |
</target> |
| 254 |
|
|
| 281 |
|
|
| 282 |
<copy todir="${build.filter.src.dir}"> |
<copy todir="${build.filter.src.dir}"> |
| 283 |
<fileset dir="${src.dir}"> |
<fileset dir="${src.dir}"> |
| 284 |
<patternset refid="emulation.excludes"/> |
<include name="**/*.html"/> |
| 285 |
</fileset> |
</fileset> |
| 286 |
|
</copy> |
| 287 |
|
|
| 288 |
|
<copy todir="${build.filter.src.dir}"> |
| 289 |
|
<fileset dir="${src.dir}"> |
| 290 |
|
<exclude name="**/*.html"/> |
| 291 |
|
<!-- Files excluded from dist-docs --> |
| 292 |
|
<exclude name="java/util/Random.*"/> |
| 293 |
|
<exclude name="sun/misc/Unsafe.*"/> |
| 294 |
|
</fileset> |
| 295 |
|
<!-- |
| 296 |
<filterchain> |
<filterchain> |
| 297 |
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
--> |
| 298 |
classpath="${build.ant.dir}"> |
|
| 299 |
<!-- |
<!-- |
| 300 |
# These arguments are to get rid of angle-bracketed type |
# This filter gets rid of angle-bracketed type parameters |
| 301 |
# parameters so that javadoc can run on the result. The |
# so that javadoc can run on the result. The following |
| 302 |
# following heuristic that seems to work: |
# heuristic seems to work: |
| 303 |
# |
# |
| 304 |
# For all lines not starting with space(s)-asterisk-space(s), |
# For all lines not starting with space(s)-asterisk-space(s), |
| 305 |
# replace <something> with a space, where there may be more |
# replace <something> with a space, where there may be more |
| 307 |
# must not contain parens or pipes. (This may need some |
# must not contain parens or pipes. (This may need some |
| 308 |
# tweaking.) |
# tweaking.) |
| 309 |
--> |
--> |
| 310 |
|
|
| 311 |
|
<!-- |
| 312 |
|
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
| 313 |
|
classpath="${build.ant.dir}"> |
| 314 |
<param name="notmatching" value="^\s+\*\s.*$"/> |
<param name="notmatching" value="^\s+\*\s.*$"/> |
| 315 |
<param name="pattern" value="<[^|>()]+?>+"/> |
<param name="pattern" value="<[^|>()]+?>+"/> |
| 316 |
<param name="replacement" value=" "/> |
<param name="replacement" value=" "/> |
| 317 |
</filterreader> |
</filterreader> |
| 318 |
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
--> |
| 319 |
classpath="${build.ant.dir}"> |
|
| 320 |
<!-- |
<!-- |
| 321 |
# These arguments are to uncomment lines beginning with |
</filterchain> |
|
# "//@" so that javadoc can see imports that are needed |
|
|
# to resolve links but that shouldn't be in the compiled |
|
|
# code. |
|
| 322 |
--> |
--> |
| 323 |
<param name="matching" value="^//@.*$"/> |
</copy> |
| 324 |
<param name="pattern" value="^//@"/> |
|
| 325 |
<param name="replacement" value=""/> |
</target> |
| 326 |
|
|
| 327 |
|
|
| 328 |
|
<target name="filter-doccheck" |
| 329 |
|
depends="filter-src"> |
| 330 |
|
|
| 331 |
|
<mkdir dir="${build.dc-filter.dir}"/> |
| 332 |
|
|
| 333 |
|
<copy todir="${build.dc-filter.dir}"> |
| 334 |
|
<fileset dir="${build.filter.src.dir}"> |
| 335 |
|
<include name="**/*.html"/> |
| 336 |
|
</fileset> |
| 337 |
|
</copy> |
| 338 |
|
|
| 339 |
|
<property name="generic.declarations" |
| 340 |
|
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 {}" |
| 341 |
|
/> |
| 342 |
|
|
| 343 |
|
<copy todir="${build.dc-filter.dir}"> |
| 344 |
|
<fileset dir="${build.filter.src.dir}"> |
| 345 |
|
<exclude name="**/*.html"/> |
| 346 |
|
</fileset> |
| 347 |
|
<filterchain> |
| 348 |
|
<!-- |
| 349 |
|
# These two filters try to make the source look like |
| 350 |
|
# something that doccheck can process. The first removes |
| 351 |
|
# -source 1.4 assertions and the second adds in a bunch |
| 352 |
|
# of single letter public nested marker interfaces so that |
| 353 |
|
# the generic type parameters are recognized. |
| 354 |
|
--> |
| 355 |
|
|
| 356 |
|
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
| 357 |
|
classpath="${build.ant.dir}"> |
| 358 |
|
<param name="matching" value="^\s*assert[\s ].*$"/> |
| 359 |
|
<param name="pattern" value="assert"/> |
| 360 |
|
<param name="replacement" value="//assert"/> |
| 361 |
</filterreader> |
</filterreader> |
| 362 |
|
|
| 363 |
|
<filterreader classname="jsr166.ant.filters.ReplaceFilter" |
| 364 |
|
classpath="${build.ant.dir}"> |
| 365 |
|
<param name="matching" value="^([^*]*(class|interface|implements) .*|)\{.*$"/> |
| 366 |
|
<param name="pattern" value="$"/> |
| 367 |
|
<param name="replacement" value=" ${generic.declarations}"/> |
| 368 |
|
</filterreader> |
| 369 |
|
|
| 370 |
</filterchain> |
</filterchain> |
| 371 |
</copy> |
</copy> |
| 372 |
|
|
| 378 |
|
|
| 379 |
<mkdir dir="${build.testcases.dir}"/> |
<mkdir dir="${build.testcases.dir}"/> |
| 380 |
|
|
| 381 |
|
<javac srcdir="${tck.src.dir}" |
| 382 |
|
destdir="${build.testcases.dir}" |
| 383 |
|
debug="${build.debug}" |
| 384 |
|
debuglevel="${build.debuglevel}" |
| 385 |
|
deprecation="${build.deprecation}" |
| 386 |
|
source="${build.sourcelevel}" |
| 387 |
|
fork="true"> |
| 388 |
|
|
| 389 |
|
<compilerarg value="${bootclasspath.args}"/> |
| 390 |
|
<compilerarg line="${build.args}"/> |
| 391 |
|
|
| 392 |
|
<classpath refid="test.classpath"/> |
| 393 |
|
|
| 394 |
|
</javac> |
| 395 |
|
|
| 396 |
<javac srcdir="${test.src.dir}" |
<javac srcdir="${test.src.dir}" |
| 397 |
destdir="${build.testcases.dir}" |
destdir="${build.testcases.dir}" |
| 398 |
debug="${build.debug}" |
debug="${build.debug}" |
| 401 |
source="${build.sourcelevel}" |
source="${build.sourcelevel}" |
| 402 |
fork="true"> |
fork="true"> |
| 403 |
|
|
| 404 |
<bootclasspath refid="javac.bootclasspath"/> |
<include name="jsr166/test/**"/> |
| 405 |
<compilerarg line="${javac.args} ${build.warnings.option}"/> |
|
| 406 |
|
<compilerarg value="${bootclasspath.args}"/> |
| 407 |
|
<compilerarg line="${build.args}"/> |
| 408 |
|
|
| 409 |
|
<classpath refid="test.classpath"/> |
| 410 |
|
|
| 411 |
|
</javac> |
| 412 |
|
|
| 413 |
|
<!-- |
| 414 |
|
<javac srcdir="${jtreg.src.dir}" |
| 415 |
|
destdir="${build.testcases.dir}" |
| 416 |
|
debug="${build.debug}" |
| 417 |
|
debuglevel="${build.debuglevel}" |
| 418 |
|
deprecation="${build.deprecation}" |
| 419 |
|
source="${build.sourcelevel}" |
| 420 |
|
fork="true"> |
| 421 |
|
|
| 422 |
|
<compilerarg value="${bootclasspath.args}"/> |
| 423 |
|
<compilerarg line="${build.args}"/> |
| 424 |
|
|
| 425 |
<classpath refid="test.classpath"/> |
<classpath refid="test.classpath"/> |
| 426 |
|
|
| 427 |
</javac> |
</javac> |
| 428 |
|
--> |
| 429 |
|
|
| 430 |
</target> |
</target> |
| 431 |
|
|
| 445 |
dir="${build.reports.dir}" |
dir="${build.reports.dir}" |
| 446 |
fork="true"> |
fork="true"> |
| 447 |
|
|
| 448 |
<jvmarg value="${test.javac.args}"/> |
<jvmarg value="${bootclasspath.args}"/> |
| 449 |
|
|
| 450 |
|
<classpath refid="test.classpath"/> |
| 451 |
|
|
| 452 |
<formatter type="xml"/> |
<formatter type="xml"/> |
| 453 |
|
|
| 454 |
<batchtest todir="${build.reports.dir}"> |
<batchtest todir="${build.reports.dir}" unless="no.test.tck"> |
| 455 |
|
<fileset dir="${tck.src.dir}"> |
| 456 |
|
<include name="**/${testcase}Test.java"/> |
| 457 |
|
</fileset> |
| 458 |
|
</batchtest> |
| 459 |
|
|
| 460 |
|
<batchtest todir="${build.reports.dir}" if="do.test.old"> |
| 461 |
<fileset dir="${test.src.dir}"> |
<fileset dir="${test.src.dir}"> |
| 462 |
|
<include name="jsr166/test/**/${testcase}Test.java"/> |
| 463 |
|
</fileset> |
| 464 |
|
</batchtest> |
| 465 |
|
|
| 466 |
|
<!-- |
| 467 |
|
<batchtest todir="${build.reports.dir}" if="do.test.jtreg"> |
| 468 |
|
<fileset dir="${jtreg.src.dir}"> |
| 469 |
<include name="**/${testcase}Test.java"/> |
<include name="**/${testcase}Test.java"/> |
| 470 |
</fileset> |
</fileset> |
| 471 |
</batchtest> |
</batchtest> |
| 472 |
|
--> |
| 473 |
|
|
| 474 |
</junit> |
</junit> |
| 475 |
|
|
| 479 |
<target name="report-tests" |
<target name="report-tests" |
| 480 |
depends="run-tests"> |
depends="run-tests"> |
| 481 |
|
|
| 482 |
<!-- Sets junit.report.format to frames if Xalan is present, |
<!-- Sets junit.report.format to frames if redirection is present, |
| 483 |
otherwise sets it to noframes. --> |
otherwise sets it to noframes. --> |
| 484 |
<available property="junit.report.format" |
<available property="junit.report.format" |
| 485 |
value="frames" |
value="frames" |
| 502 |
</target> |
</target> |
| 503 |
|
|
| 504 |
|
|
| 505 |
<target name="check-junit"> |
<target name="configure-compiler"> |
| 506 |
|
|
| 507 |
|
<property name="unchecked.option" value="-Xlint:unchecked"/> |
| 508 |
|
|
| 509 |
|
<condition property="warnunchecked.arg" value="${unchecked.option}"> |
| 510 |
|
<istrue value="${build.warnunchecked}"/> |
| 511 |
|
</condition> |
| 512 |
|
|
| 513 |
|
<property name="warnunchecked.arg" value=""/> |
| 514 |
|
|
| 515 |
|
|
| 516 |
|
<!-- Common options in javac invocations --> |
| 517 |
|
<property name="build.args" value="${warnunchecked.arg}"/> |
| 518 |
|
|
| 519 |
|
</target> |
| 520 |
|
|
| 521 |
|
|
| 522 |
|
<target name="configure-tests" |
| 523 |
|
depends="configure-compiler"> |
| 524 |
|
|
| 525 |
<!-- junit.framework.Protectable is in JUnit 3.8.1 but not in 3.7 --> |
<!-- junit.framework.Protectable is in JUnit 3.8.1 but not in 3.7 --> |
| 526 |
<available property="junit.available" |
<available property="junit.available" |
| 527 |
classname="junit.framework.Protectable"/> |
classname="junit.framework.Protectable"/> |
| 528 |
|
|
| 529 |
|
<!-- Xalan --> |
| 530 |
|
<available property="xalan.available" |
| 531 |
|
classname="org.apache.xalan.Version"/> |
| 532 |
|
|
| 533 |
|
|
| 534 |
|
<!-- Ant 1.6beta and later don't need or want this check --> |
| 535 |
|
<!-- |
| 536 |
<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" |
| 537 |
unless="junit.available"/> |
unless="junit.available"/> |
| 538 |
|
|
| 539 |
|
<fail message="Need Xalan 2.5.1 jar in ${ant.home}${file.separator}lib to run tests" |
| 540 |
|
unless="xalan.available"/> |
| 541 |
|
--> |
| 542 |
|
|
| 543 |
</target> |
</target> |
| 544 |
|
|
| 545 |
|
|
| 546 |
|
|
| 547 |
<!-- Anthill targets --> |
<!-- Anthill targets --> |
| 548 |
|
|
| 549 |
<target name="anthill-build" |
<target name="anthill-build"> |
| 550 |
|
|
| 551 |
|
<!-- Override this in user.properties --> |
| 552 |
|
<property name="tiger.home" location="e:/j2sdk1.5.0"/> |
| 553 |
|
|
| 554 |
|
<exec resultproperty="result.property" dir="${basedir}" executable="${tiger.home}/bin/java"> |
| 555 |
|
<arg value="-Xmx256000000"/> |
| 556 |
|
<!-- classpath of new JVM --> |
| 557 |
|
<arg value="-classpath"/> <arg path="${java.class.path}"/> |
| 558 |
|
<!-- location of Ant home directory --> |
| 559 |
|
<arg value="-Dant.home=${ant.home}"/> |
| 560 |
|
<!-- the Ant main class --> |
| 561 |
|
<arg value="org.apache.tools.ant.Main"/> |
| 562 |
|
<!-- The build file --> |
| 563 |
|
<arg value="-buildfile"/> <arg value="build.xml"/> |
| 564 |
|
<!-- the target to build on the new Ant instance --> |
| 565 |
|
<arg value="-DJAVA_HOME=${tiger.home}"/> |
| 566 |
|
<arg value="do-anthill-build"/> |
| 567 |
|
</exec> |
| 568 |
|
</target> |
| 569 |
|
|
| 570 |
|
<target name="do-anthill-build" |
| 571 |
depends="jar, test, docs, dist-docs"/> |
depends="jar, test, docs, dist-docs"/> |
| 572 |
|
|
| 573 |
<target name="anthill-publish"> |
<target name="anthill-publish"> |
| 590 |
</target> |
</target> |
| 591 |
|
|
| 592 |
|
|
| 593 |
|
<!-- Standalone sample program --> |
| 594 |
|
|
| 595 |
|
<target name="sample" depends="jar"> |
| 596 |
|
|
| 597 |
|
<mkdir dir="${build.testcases.dir}"/> |
| 598 |
|
|
| 599 |
|
<javac srcdir="${test.src.dir}" |
| 600 |
|
destdir="${build.testcases.dir}" |
| 601 |
|
debug="${build.debug}" |
| 602 |
|
debuglevel="${build.debuglevel}" |
| 603 |
|
deprecation="${build.deprecation}" |
| 604 |
|
source="${build.sourcelevel}" |
| 605 |
|
fork="true"> |
| 606 |
|
|
| 607 |
|
<compilerarg value="${bootclasspath.args}"/> |
| 608 |
|
<compilerarg line="${build.args}"/> |
| 609 |
|
|
| 610 |
|
<classpath refid="test.classpath"/> |
| 611 |
|
|
| 612 |
|
<include name="jsr166/test/Sample.java"/> |
| 613 |
|
|
| 614 |
|
</javac> |
| 615 |
|
|
| 616 |
|
|
| 617 |
|
<java classname="jsr166.test.Sample" fork="true"> |
| 618 |
|
<jvmarg value="${bootclasspath.args}"/> |
| 619 |
|
<classpath refid="test.classpath"/> |
| 620 |
|
</java> |
| 621 |
|
</target> |
| 622 |
|
|
| 623 |
|
|
| 624 |
|
|
| 625 |
|
<!-- C++ and JNI definitions and demos --> |
| 626 |
|
|
| 627 |
|
<target name="configure-cpp"> |
| 628 |
|
|
| 629 |
|
<!-- Define tasks and types --> |
| 630 |
|
|
| 631 |
|
<path id="cpptasks.path"> |
| 632 |
|
<pathelement location="${lib.dir}/cpptasks.jar"/> |
| 633 |
|
</path> |
| 634 |
|
<taskdef resource="cpptasks.tasks" classpathref="cpptasks.path"/> |
| 635 |
|
<typedef resource="cpptasks.types" classpathref="cpptasks.path"/> |
| 636 |
|
|
| 637 |
|
<!-- Set platform property for JNI includes --> |
| 638 |
|
|
| 639 |
|
<condition property="platform" value="linux"> |
| 640 |
|
<os name="Linux"/> |
| 641 |
|
</condition> |
| 642 |
|
<condition property="platform" value="win32"> |
| 643 |
|
<os family="windows"/> |
| 644 |
|
</condition> |
| 645 |
|
<condition property="platform" value="solaris"> |
| 646 |
|
<os name="SunOS"/> |
| 647 |
|
</condition> |
| 648 |
|
|
| 649 |
|
</target> |
| 650 |
|
|
| 651 |
|
|
| 652 |
|
<target name="cppdemo" depends="configure-cpp"> |
| 653 |
|
|
| 654 |
|
<mkdir dir="${build.dir}"/> |
| 655 |
|
|
| 656 |
|
<cc multithreaded="true" |
| 657 |
|
name="g++" |
| 658 |
|
objdir="${build.dir}" |
| 659 |
|
outfile="${build.dir}/CppDemo"> |
| 660 |
|
<fileset dir="${test.src.dir}" includes="CppDemo.cpp"/> |
| 661 |
|
<libset libs="stdc++"/> |
| 662 |
|
</cc> |
| 663 |
|
|
| 664 |
|
<exec executable="${build.dir}/CppDemo"> |
| 665 |
|
<arg line="count in word frequency of word in command line count"/> |
| 666 |
|
</exec> |
| 667 |
|
|
| 668 |
|
</target> |
| 669 |
|
|
| 670 |
|
|
| 671 |
|
<target name="jnidemo" depends="init, configure-compiler, configure-cpp"> |
| 672 |
|
|
| 673 |
|
<mkdir dir="${build.testcases.dir}"/> |
| 674 |
|
|
| 675 |
|
<javac srcdir="${test.src.dir}" |
| 676 |
|
destdir="${build.testcases.dir}" |
| 677 |
|
debug="${build.debug}" |
| 678 |
|
debuglevel="${build.debuglevel}" |
| 679 |
|
deprecation="${build.deprecation}" |
| 680 |
|
source="${build.sourcelevel}" |
| 681 |
|
fork="true"> |
| 682 |
|
<compilerarg value="${bootclasspath.args}"/> |
| 683 |
|
<compilerarg line="${build.args}"/> |
| 684 |
|
<classpath refid="test.classpath"/> |
| 685 |
|
<include name="JniDemo.java"/> |
| 686 |
|
</javac> |
| 687 |
|
|
| 688 |
|
<javah destdir="${build.testcases.dir}" |
| 689 |
|
classpathref="test.classpath"> |
| 690 |
|
<class name="JniDemo"/> |
| 691 |
|
</javah> |
| 692 |
|
|
| 693 |
|
<cc multithreaded="true" |
| 694 |
|
name="g++" |
| 695 |
|
objdir="${build.dir}" |
| 696 |
|
outfile="${build.dir}/JniDemo" |
| 697 |
|
outtype="shared"> |
| 698 |
|
|
| 699 |
|
<compiler> |
| 700 |
|
<defineset> |
| 701 |
|
<define name="__int64" value="long long"/> |
| 702 |
|
</defineset> |
| 703 |
|
<includepath location="${java.home}/../include"/> |
| 704 |
|
<includepath location="${java.home}/../include/${platform}"/> |
| 705 |
|
<compilerarg value="-mno-cygwin"/> |
| 706 |
|
</compiler> |
| 707 |
|
|
| 708 |
|
<linker> |
| 709 |
|
<linkerarg value="--add-stdcall-alias"/> |
| 710 |
|
</linker> |
| 711 |
|
|
| 712 |
|
<includepath location="${build.testcases.dir}"/> |
| 713 |
|
|
| 714 |
|
<fileset dir="${test.src.dir}" includes="JniDemo.cpp"/> |
| 715 |
|
|
| 716 |
|
<libset libs="stdc++"/> |
| 717 |
|
|
| 718 |
|
</cc> |
| 719 |
|
|
| 720 |
|
<!-- Necessary if windows, harmless if not --> |
| 721 |
|
<copy file="${build.dir}/libJniDemo.so" tofile="${build.dir}/JniDemo.dll"/> |
| 722 |
|
|
| 723 |
|
<java classname="JniDemo" fork="true"> |
| 724 |
|
<!-- Watch out: path separator hardwired to semicolon here! --> |
| 725 |
|
<sysproperty key="java.library.path" path="${java.library.path};${build.dir}"/> |
| 726 |
|
<classpath refid="test.classpath"/> |
| 727 |
|
</java> |
| 728 |
|
|
| 729 |
|
</target> |
| 730 |
|
|
| 731 |
|
|
| 732 |
|
|
| 733 |
|
<!-- Backward compatibility, work in progress (some files not checked in) --> |
| 734 |
|
|
| 735 |
|
|
| 736 |
|
|
| 737 |
|
<property name="pretiger.src.dir" location="${build.dir}/pretiger/src"/> |
| 738 |
|
<property name="build.pretiger.dir" location="${build.dir}/pretiger/classes"/> |
| 739 |
|
<property name="pretiger.jar" location="${build.lib.dir}/jsr166-pretiger.jar"/> |
| 740 |
|
<property name="pretiger.sourcelevel" value="1.4"/> |
| 741 |
|
|
| 742 |
|
<target name="defang" |
| 743 |
|
depends="init" |
| 744 |
|
description="Generates pre-Tiger compatible source"> |
| 745 |
|
|
| 746 |
|
<delete dir="${pretiger.src.dir}"/> |
| 747 |
|
<mkdir dir="${pretiger.src.dir}"/> |
| 748 |
|
|
| 749 |
|
<exec executable="perl"> |
| 750 |
|
<arg file="etc/defang.pl"/> |
| 751 |
|
<!-- <arg value="-v"/> --> |
| 752 |
|
<arg value="-s"/> <arg file="${src.dir}"/> |
| 753 |
|
<arg value="-t"/> <arg file="${pretiger.src.dir}"/> |
| 754 |
|
</exec> |
| 755 |
|
|
| 756 |
|
</target> |
| 757 |
|
|
| 758 |
|
<target name="compile-pretiger" |
| 759 |
|
depends="init, configure-compiler, defang" |
| 760 |
|
description="Compiles pre-Tiger sources to build folder"> |
| 761 |
|
|
| 762 |
|
<mkdir dir="${build.pretiger.dir}"/> |
| 763 |
|
|
| 764 |
|
<javac srcdir="${pretiger.src.dir}" |
| 765 |
|
destdir="${build.pretiger.dir}" |
| 766 |
|
debug="${build.debug}" |
| 767 |
|
debuglevel="${build.debuglevel}" |
| 768 |
|
deprecation="${build.deprecation}" |
| 769 |
|
source="${pretiger.sourcelevel}" |
| 770 |
|
fork="true"> |
| 771 |
|
|
| 772 |
|
<compilerarg line="${build.args}"/> |
| 773 |
|
<exclude name="**/Thread.java"/> |
| 774 |
|
|
| 775 |
|
</javac> |
| 776 |
|
|
| 777 |
|
</target> |
| 778 |
|
|
| 779 |
|
<target name="pretiger" depends="compile-pretiger"> |
| 780 |
|
|
| 781 |
|
<mkdir dir="${build.lib.dir}"/> |
| 782 |
|
|
| 783 |
|
<jar destfile="${pretiger.jar}"> |
| 784 |
|
<fileset dir="${build.pretiger.dir}"> |
| 785 |
|
</fileset> |
| 786 |
|
</jar> |
| 787 |
|
|
| 788 |
|
</target> |
| 789 |
|
|
| 790 |
</project> |
</project> |