ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/build.xml
(Generate patch)

Comparing jsr166/build.xml (file contents):
Revision 1.14 by tim, Thu Dec 12 20:23:16 2002 UTC vs.
Revision 1.26 by dl, Tue May 27 16:21:52 2003 UTC

# Line 1 | Line 1
1 < <project name="jsr166" default="jar">
1 > <project name="jsr166" default="usage">
2  
3    <description>
4
4      Build file for JSR-166
5  
6 <    Note that junit.jar must be in ${ant.home}/lib for the
8 <    test target to work. [FIXME: This should be automatically
9 <    enforced by this build file by failing with a message if
10 <    junit.jar is not in the right place.]
11 <
6 >    JUnit 1.8 must be in ${ant.home}/lib for the test target to work.
7    </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 -->
34    <property name="build.sourcelevel"    value="1.5"/>
35 +  <property name="build.docsourcelevel" value="1.4"/>
36    <property name="build.debug"          value="true"/>
37    <property name="build.debuglevel"     value="source,lines,vars"/>
38    <property name="build.deprecation"    value="false"/>
# Line 27 | Line 47
47    <property name="build.lib.dir"        location="${build.dir}/lib"/>
48    <property name="build.ant.dir"        location="${build.dir}/ant"/>
49    <property name="build.javadocs.dir"   location="${build.dir}/javadocs"/>
50 +  <property name="build.stripped.dir"   location="${build.dir}/stripped"/>
51    <property name="build.reports.dir"    location="${build.dir}/reports"/>
52 +  <property name="build.doccheck.dir"   location="${build.dir}/doccheck"/>
53    <property name="build.filter.src.dir" location="${build.dir}/filtersrc"/>
54  
55    <!-- Source locations -->
56 <  <property name="src.dir"              location="${basedir}"/>
57 <  <property name="test.src.dir"         location="${basedir}/etc/testcases"/>
56 >  <property name="src.dir"              location="${basedir}/src/main"/>
57 >  <property name="test.src.dir"         location="${basedir}/src/test"/>
58    <property name="ant.src.dir"          location="${basedir}/etc/ant"/>
59    <property name="stylesheet.dir"       location="${basedir}/etc/xsl"/>
60    <property name="lib.dir"              location="${basedir}/lib"/>
# Line 48 | Line 70
70    <property name="junit.jar"            location="${lib.dir}/junit.jar"/>
71    <property name="rt.jar"               location="${java.home}/lib/rt.jar"/>
72  
73 <  <property name="javac.args"           value='-J-Xbootclasspath/p:${javac.jar}'/>
73 >  <property name="javac.args"           value='-J-Xbootclasspath/p:$[src.dir]:${javac.jar}'/>
74  
75    <path id="javac.bootclasspath">
76 +    <pathelement location="${src.dir}"/>
77      <pathelement location="${collect.jar}"/>
78      <pathelement location="${rt.jar}"/>
79    </path>
# Line 76 | Line 99
99        <bootclasspath refid="javac.bootclasspath"/>
100        <compilerarg line="${javac.args} ${build.warnings.option}"/>
101  
79      <!-- need this because srcdir is basedir! -->
80      <include name="java/**/*.java"/>
81
102      </javac>
103    </target>
104  
# Line 92 | Line 112
112    </target>
113  
114  
115 <  <target name="test" depends="init, report-tests"
116 <          description="Runs all tests"/>
115 >  <target name="test" depends="init, check-junit, report-tests"
116 >          description="Runs all tests (requires JUnit 1.8 in ${ant.home}/lib)"/>
117 >
118 >
119 >  <target name="checkstyle" depends="filter-src"
120 >          description="Reports on style errors in Java source (verbose, mostly chaff)">
121 >    <taskdef resource="checkstyletask.properties"
122 >            classpath="${lib.dir}/checkstyle-all-2.4.jar"/>
123 >
124 >    <checkstyle>
125 >      <formatter type="plain"/>  <!-- also available: type="xml" -->
126 >      <fileset dir="${build.filter.src.dir}" includes="**/*.java"/>
127 >    </checkstyle>
128 >  </target>
129  
130  
131 <  <target name="docs" depends="init, clean-filtered-src, filter-src"
131 >  <target name="doccheck" depends="filter-src"
132 >          description="Reports on javadoc style errors (not working yet)">
133 >    <delete dir="${build.doccheck.dir}"/>
134 >    <mkdir dir="${build.doccheck.dir}"/>
135 >    <javadoc doclet="com.sun.tools.doclets.doccheck.DocCheck"
136 >         docletpath="${lib.dir}/doccheck.jar"
137 >            destdir="${build.doccheck.dir}">
138 >      <packageset dir="${build.filter.src.dir}"/>
139 >    </javadoc>
140 >  </target>
141 >
142 >
143 >  <target name="docs" depends="filter-src"
144            description="Builds javadocs with custom tags to build folder">
145      <delete dir="${build.javadocs.dir}"/>
146      <mkdir dir="${build.javadocs.dir}"/>
147      <javadoc destdir="${build.javadocs.dir}"
148                  link="http://java.sun.com/j2se/1.4.1/docs/api"
149              overview="${src.dir}/intro.html"
150 <              source="${build.sourcelevel}">
150 >              source="${build.docsourcelevel}">
151  
152        <tag name="revised" description="Last revised:"/>
153        <tag name="spec" description="Specified by:"/>
154        <tag name="editor" description="Last edited by:"/>
155        <tag name="fixme" description="FIX ME:"/>
156 <      <packageset dir="${build.filter.src.dir}">
113 <        <include name="java/**"/>
114 <      </packageset>
156 >      <packageset dir="${build.filter.src.dir}"/>
157  
158      </javadoc>
159    </target>
160  
161  
162 <  <target name="dist" depends="init, dist-clean, dist-jar, dist-docs"/>
162 >  <!--
163 >   # javac -s doesn't reliably generate compilable code. It generates
164 >   # bridge methods (marked as "synthetic") that can have identical
165 >   # signatures to existing methods except for the return value.
166 >   -->
167 >  <target name="strip" depends="init">
168 >    <mkdir dir="${build.stripped.dir}"/>
169 >    <javac srcdir="${src.dir}"
170 >          destdir="${build.stripped.dir}"
171 >            debug="${build.debug}"
172 >       debuglevel="${build.debuglevel}"
173 >      deprecation="${build.deprecation}"
174 >           source="${build.sourcelevel}"
175 >             fork="true">
176 >
177 >      <bootclasspath refid="javac.bootclasspath"/>
178 >      <compilerarg line="${javac.args} ${build.warnings.option} -s"/>
179 >
180 >    </javac>
181 >  </target>
182 >
183 >
184 >  <target name="dist" depends="init, dist-clean, dist-jar, dist-docs"
185 >          description="Puts all distributable products in single hierarchy"/>
186  
187  
188    <target name="clean"
# Line 137 | Line 202
202    <!-- Anthill targets -->
203  
204    <!-- Should really run the tests instead of just the jar target -->
205 <  <target name="anthill-build" depends="jar, docs, dist-docs"
141 <          description="Build the jar and both the external and internal docs"/>
205 >  <target name="anthill-build" depends="jar, docs, dist-docs"/>
206  
207    <target name="anthill-publish">
208      <copy todir="${deployDir}/docs/private">
# Line 147 | Line 211
211      <copy todir="${deployDir}/docs/public">
212        <fileset dir="${dist.javadocs.dir}"/>
213      </copy>
214 +    <copy tofile="${deployDir}/index.html"
215 +          file="${basedir}/etc/anthill-index.html"/>
216 +    <copy todir="${deployDir}/notes">
217 +      <fileset dir="${basedir}/etc/notes"/>
218 +    </copy>
219    </target>
220  
221  
# Line 156 | Line 225
225      <property name="build.warnings.option" value="-warnunchecked"/>
226    </target>
227  
228 +
229    <target name="set-warnings-unless" unless="build.warnings">
230      <property name="build.warnings.option" value=""/>
231    </target>
232  
233 +
234    <target name="init" depends="set-warnings-if, set-warnings-unless">
235      <!-- Version is kept in a separate file -->
236      <loadfile property="version" srcFile="version.properties"/>
# Line 167 | Line 238
238    </target>
239  
240  
170  <target name="clean-filtered-src">
171    <delete dir="${build.filter.src.dir}"/>
172  </target>
173
174
241    <target name="dist-jar" depends="clean, jar">
242      <copy file="${product.jar}" todir="${dist.dir}"/>
243    </target>
244  
245  
246 <  <target name="dist-docs" depends="clean-filtered-src, filter-src"
246 >  <target name="dist-docs" depends="filter-src"
247            description="Builds javadocs without custom tags to dist folder">
248      <delete dir="${dist.javadocs.dir}"/>
249      <mkdir dir="${dist.javadocs.dir}"/>
250      <javadoc destdir="${dist.javadocs.dir}"
251                  link="http://java.sun.com/j2se/1.4.1/docs/api"
252              overview="${src.dir}/intro.html"
253 <              source="${build.sourcelevel}">
253 >              source="${build.docsourcelevel}">
254  
255 <      <packageset dir="${build.filter.src.dir}">
190 <        <include name="java/**"/>
191 <      </packageset>
255 >      <packageset dir="${build.filter.src.dir}"/>
256  
257      </javadoc>
258    </target>
259  
260  
261 <  <target name="compile-ant-filter">
261 >  <target name="compile-ant-filter" depends="init">
262      <mkdir dir="${build.ant.dir}"/>
263      <javac srcdir="${ant.src.dir}"
264            destdir="${build.ant.dir}"
# Line 257 | Line 321
321        <bootclasspath refid="javac.bootclasspath"/>
322        <compilerarg line="${javac.args} ${build.warnings.option}"/>
323        <classpath refid="test.classpath"/>
260      <include name="**/*Test.java"/>
324  
325      </javac>
326    </target>
# Line 272 | Line 335
335                      dir="${build.reports.dir}"
336                     fork="true">
337  
338 <      <jvmarg value="-Xbootclasspath/p:${product.jar}"/>
339 <
340 <      <classpath>
341 <        <!-- <path refid="test.classpath"/> -->
342 <        <pathelement location="${build.testcases.dir}"/>
280 <      </classpath>
338 >      <!--
339 >       ! This nastiness is so JUnit can test classes we are inserting
340 >       ! into the java.* packages.
341 >       -->
342 >      <jvmarg value="-Xbootclasspath/p:${product.jar};${build.testcases.dir};${junit.jar}"/>
343  
344        <formatter type="xml"/>
345  
346        <batchtest todir="${build.reports.dir}">
347          <fileset dir="${test.src.dir}">
348 <          <include name="**/*Test.java"/>
348 >          <include name="**/${testcase}Test.java"/>
349          </fileset>
350        </batchtest>
351  
# Line 314 | Line 376
376    </target>
377  
378  
379 +  <target name="check-junit">
380 +    <!-- FIXME: this test isn't specific enough -->
381 +    <available property="junit.available"
382 +               classname="junit.framework.TestCase"/>
383 +    <fail message="Need JUnit 3.8 to run tests" unless="junit.available"/>
384 +  </target>
385 +
386 +
387   </project>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines