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.13 by tim, Wed Dec 11 22:52:29 2002 UTC vs.
Revision 1.25 by tim, Mon May 19 11:33:20 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 76 | Line 98
98        <bootclasspath refid="javac.bootclasspath"/>
99        <compilerarg line="${javac.args} ${build.warnings.option}"/>
100  
79      <!-- need this because srcdir is basedir! -->
80      <include name="java/**/*.java"/>
81
101      </javac>
102    </target>
103  
# Line 92 | Line 111
111    </target>
112  
113  
114 <  <target name="test" depends="init, report-tests"
115 <          description="Runs all tests"/>
114 >  <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  
130 <  <target name="docs" depends="init, clean-filtered-src, 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 >    </javadoc>
139 >  </target>
140 >
141 >
142 >  <target name="docs" depends="filter-src"
143            description="Builds javadocs with custom tags to build folder">
144      <delete dir="${build.javadocs.dir}"/>
145      <mkdir dir="${build.javadocs.dir}"/>
146      <javadoc destdir="${build.javadocs.dir}"
147                  link="http://java.sun.com/j2se/1.4.1/docs/api"
148              overview="${src.dir}/intro.html"
149 <              source="${build.sourcelevel}">
149 >              source="${build.docsourcelevel}">
150  
151        <tag name="revised" description="Last revised:"/>
152        <tag name="spec" description="Specified by:"/>
153        <tag name="editor" description="Last edited by:"/>
154        <tag name="fixme" description="FIX ME:"/>
155 <      <packageset dir="${build.filter.src.dir}">
113 <        <include name="java/**"/>
114 <      </packageset>
155 >      <packageset dir="${build.filter.src.dir}"/>
156  
157      </javadoc>
158    </target>
159  
160  
161 <  <target name="dist" depends="init, dist-clean, dist-jar, dist-docs"/>
161 >  <!--
162 >   # javac -s doesn't reliably generate compilable code. It generates
163 >   # bridge methods (marked as "synthetic") that can have identical
164 >   # signatures to existing methods except for the return value.
165 >   -->
166 >  <target name="strip" depends="init">
167 >    <mkdir dir="${build.stripped.dir}"/>
168 >    <javac srcdir="${src.dir}"
169 >          destdir="${build.stripped.dir}"
170 >            debug="${build.debug}"
171 >       debuglevel="${build.debuglevel}"
172 >      deprecation="${build.deprecation}"
173 >           source="${build.sourcelevel}"
174 >             fork="true">
175 >
176 >      <bootclasspath refid="javac.bootclasspath"/>
177 >      <compilerarg line="${javac.args} ${build.warnings.option} -s"/>
178 >
179 >    </javac>
180 >  </target>
181 >
182 >
183 >  <target name="dist" depends="init, dist-clean, dist-jar, dist-docs"
184 >          description="Puts all distributable products in single hierarchy"/>
185  
186  
187    <target name="clean"
# Line 134 | Line 198
198    </target>
199  
200  
201 +  <!-- Anthill targets -->
202 +
203 +  <!-- Should really run the tests instead of just the jar target -->
204 +  <target name="anthill-build" depends="jar, docs, dist-docs"/>
205 +
206 +  <target name="anthill-publish">
207 +    <copy todir="${deployDir}/docs/private">
208 +      <fileset dir="${build.javadocs.dir}"/>
209 +    </copy>
210 +    <copy todir="${deployDir}/docs/public">
211 +      <fileset dir="${dist.javadocs.dir}"/>
212 +    </copy>
213 +    <copy tofile="${deployDir}/index.html"
214 +          file="${basedir}/etc/anthill-index.html"/>
215 +    <copy todir="${deployDir}/notes">
216 +      <fileset dir="${basedir}/etc/notes"/>
217 +    </copy>
218 +  </target>
219 +
220 +
221    <!-- Internal targets -->
222  
223    <target name="set-warnings-if" if="build.warnings">
224      <property name="build.warnings.option" value="-warnunchecked"/>
225    </target>
226  
227 +
228    <target name="set-warnings-unless" unless="build.warnings">
229      <property name="build.warnings.option" value=""/>
230    </target>
231  
232 +
233    <target name="init" depends="set-warnings-if, set-warnings-unless">
234      <!-- Version is kept in a separate file -->
235      <loadfile property="version" srcFile="version.properties"/>
# Line 151 | Line 237
237    </target>
238  
239  
154  <target name="clean-filtered-src">
155    <delete dir="${build.filter.src.dir}"/>
156  </target>
157
158
240    <target name="dist-jar" depends="clean, jar">
241      <copy file="${product.jar}" todir="${dist.dir}"/>
242    </target>
243  
244  
245 <  <target name="dist-docs" depends="clean-filtered-src, filter-src"
245 >  <target name="dist-docs" depends="filter-src"
246            description="Builds javadocs without custom tags to dist folder">
247      <delete dir="${dist.javadocs.dir}"/>
248      <mkdir dir="${dist.javadocs.dir}"/>
249      <javadoc destdir="${dist.javadocs.dir}"
250                  link="http://java.sun.com/j2se/1.4.1/docs/api"
251              overview="${src.dir}/intro.html"
252 <              source="${build.sourcelevel}">
252 >              source="${build.docsourcelevel}">
253  
254 <      <packageset dir="${build.filter.src.dir}">
174 <        <include name="java/**"/>
175 <      </packageset>
254 >      <packageset dir="${build.filter.src.dir}"/>
255  
256      </javadoc>
257    </target>
258  
259  
260 <  <target name="compile-ant-filter">
260 >  <target name="compile-ant-filter" depends="init">
261      <mkdir dir="${build.ant.dir}"/>
262      <javac srcdir="${ant.src.dir}"
263            destdir="${build.ant.dir}"
# Line 241 | Line 320
320        <bootclasspath refid="javac.bootclasspath"/>
321        <compilerarg line="${javac.args} ${build.warnings.option}"/>
322        <classpath refid="test.classpath"/>
244      <include name="**/*Test.java"/>
323  
324      </javac>
325    </target>
# Line 256 | Line 334
334                      dir="${build.reports.dir}"
335                     fork="true">
336  
337 <      <jvmarg value="-Xbootclasspath/p:${product.jar}"/>
338 <
339 <      <classpath>
340 <        <!-- <path refid="test.classpath"/> -->
341 <        <pathelement location="${build.testcases.dir}"/>
264 <      </classpath>
337 >      <!--
338 >       ! This nastiness is so JUnit can test classes we are inserting
339 >       ! into the java.* packages.
340 >       -->
341 >      <jvmarg value="-Xbootclasspath/p:${product.jar};${build.testcases.dir};${junit.jar}"/>
342  
343        <formatter type="xml"/>
344  
345        <batchtest todir="${build.reports.dir}">
346          <fileset dir="${test.src.dir}">
347 <          <include name="**/*Test.java"/>
347 >          <include name="**/${testcase}Test.java"/>
348          </fileset>
349        </batchtest>
350  
# Line 298 | Line 375
375    </target>
376  
377  
378 +  <target name="check-junit">
379 +    <!-- FIXME: this test isn't specific enough -->
380 +    <available property="junit.available"
381 +               classname="junit.framework.TestCase"/>
382 +    <fail message="Need JUnit 3.8 to run tests" unless="junit.available"/>
383 +  </target>
384 +
385 +
386   </project>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines