ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/build.xml
Revision: 1.87
Committed: Sat May 28 02:32:19 2011 UTC (12 years, 11 months ago) by jsr166
Content type: text/xml
Branch: MAIN
Changes since 1.86: +8 -8 lines
Log Message:
link to the java se 7 docs instead

File Contents

# User Rev Content
1 tim 1.18 <project name="jsr166" default="usage">
2 tim 1.1
3     <description>
4 tim 1.29 ------------------------------------------------------------------------------
5     Build file for JSR-166
6 tim 1.18
7 tim 1.29 Usage: ant [target]
8    
9     User-specific settings are read from user.properties.
10 tim 1.32 See user.properties.sample for an explanation of some useful settings.
11 tim 1.29 ------------------------------------------------------------------------------
12 tim 1.18 </description>
13 tim 1.11
14 tim 1.29 <target name="usage" description="Advises user to run with -projecthelp">
15     <echo>Run "ant -projecthelp" for full usage information.</echo>
16     </target>
17 tim 1.3
18 tim 1.11
19 tim 1.27 <!-- User-specific settings -->
20 tim 1.23 <property file="user.properties"/>
21 tim 1.27
22 tim 1.1
23     <!-- Compilation options -->
24 dl 1.80 <property name="build.sourcelevel" value="1.6"/>
25 tim 1.1 <property name="build.debug" value="true"/>
26     <property name="build.debuglevel" value="source,lines,vars"/>
27 tim 1.13 <property name="build.deprecation" value="false"/>
28 tim 1.1
29     <!-- Build locations -->
30 jsr166 1.79 <property name="build.dir" location="build"/>
31     <property name="build.classes.dir" location="${build.dir}/classes"/>
32     <property name="build.testcases.dir" location="${build.dir}/testcases"/>
33     <property name="build.loops.dir" location="${build.dir}/loops"/>
34     <property name="build.lib.dir" location="${build.dir}/lib"/>
35     <property name="build.javadocs.dir" location="${build.dir}/javadocs"/>
36     <property name="build.reports.dir" location="${build.dir}/reports"/>
37     <property name="build.jsr166x.dir" location="${build.dir}/jsr166x"/>
38 dl 1.70 <property name="build.jsr166xlib.dir" location="${build.dir}/jsr166xlib"/>
39     <property name="build.jsr166xjavadocs.dir" location="${build.dir}/jsr166xjavadocs"/>
40 tim 1.1
41 jsr166 1.79 <property name="build.jsr166y.dir" location="${build.dir}/jsr166y"/>
42 dl 1.74 <property name="build.jsr166ylib.dir" location="${build.dir}/jsr166ylib"/>
43     <property name="build.jsr166yjavadocs.dir" location="${build.dir}/jsr166yjavadocs"/>
44    
45 jsr166 1.79 <property name="build.extra166y.dir" location="${build.dir}/extra166y"/>
46     <property name="build.extra166ylib.dir" location="${build.dir}/extra166ylib"/>
47     <property name="build.extra166yjavadocs.dir" location="${build.dir}/extra166yjavadocs"/>
48 dl 1.76
49 tim 1.1 <!-- Source locations -->
50 tim 1.22 <property name="src.dir" location="${basedir}/src/main"/>
51     <property name="test.src.dir" location="${basedir}/src/test"/>
52 jsr166 1.65 <property name="loops.src.dir" location="${basedir}/src/loops"/>
53 tim 1.60 <property name="tck.src.dir" location="${test.src.dir}/tck"/>
54 tim 1.62 <property name="jtreg.src.dir" location="${test.src.dir}/jtreg"/>
55 tim 1.1 <property name="lib.dir" location="${basedir}/lib"/>
56 tim 1.9 <property name="dist.dir" location="${basedir}/dist"/>
57 dl 1.70 <property name="topsrc.dir" location="${basedir}/src"/>
58     <property name="jsr166xsrc.dir" location="${basedir}/src/jsr166x"/>
59 dl 1.74 <property name="jsr166ysrc.dir" location="${basedir}/src/jsr166y"/>
60 jsr166 1.79 <property name="extra166ysrc.dir" location="${basedir}/src/extra166y"/>
61 dl 1.80 <property name="jdksrc.dir" location="/home/dl/1.6.0/j2se/martin/j2se/src/share/classes"/>
62 tim 1.9 <!-- Distribution locations -->
63 jsr166 1.79 <property name="dist.javadocs.dir" location="${dist.dir}/docs"/>
64 dl 1.70 <property name="dist.jsr166xjavadocs.dir" location="${dist.dir}/jsr166xdocs"/>
65 dl 1.74 <property name="dist.jsr166yjavadocs.dir" location="${dist.dir}/jsr166ydocs"/>
66 jsr166 1.79 <property name="dist.extra166yjavadocs.dir" location="${dist.dir}/extra166ydocs"/>
67 tim 1.1
68     <!-- Jar locations -->
69     <property name="product.jar" location="${build.lib.dir}/jsr166.jar"/>
70 dl 1.70 <property name="jsr166xproduct.jar" location="${build.jsr166xlib.dir}/jsr166x.jar"/>
71 dl 1.74 <property name="jsr166yproduct.jar" location="${build.jsr166ylib.dir}/jsr166y.jar"/>
72 jsr166 1.79 <property name="extra166yproduct.jar" location="${build.extra166ylib.dir}/extra166y.jar"/>
73 tim 1.1 <property name="junit.jar" location="${lib.dir}/junit.jar"/>
74 jsr166 1.65
75 tim 1.59 <!-- Bootclasspath argument -->
76     <property name="bootclasspath.args" value="-Xbootclasspath/p:${product.jar}"/>
77 tim 1.27
78 tim 1.59 <!-- Test classpath -->
79     <path id="test.classpath">
80     <pathelement location="${build.testcases.dir}"/>
81     <pathelement location="${junit.jar}"/>
82     </path>
83 tim 1.28
84 jsr166 1.65 <!-- ALoops classpath -->
85     <path id="loops.classpath">
86     <pathelement location="${build.loops.dir}"/>
87     </path>
88    
89 tim 1.28
90 tim 1.59 <!-- Main targets -->
91 tim 1.28
92 dl 1.80 <target name="dists"
93     depends="dist, jsr166xdist, jsr166ydist, extra166ydist"
94     description="Builds all public jars and docs"/>
95 tim 1.11
96 tim 1.28 <target name="compile"
97 tim 1.60 depends="init, configure-compiler"
98 tim 1.27 description="Compiles main sources to build folder">
99    
100 tim 1.1 <mkdir dir="${build.classes.dir}"/>
101 tim 1.27
102 tim 1.60 <javac srcdir="${src.dir}"
103 tim 1.1 destdir="${build.classes.dir}"
104     debug="${build.debug}"
105     debuglevel="${build.debuglevel}"
106     deprecation="${build.deprecation}"
107     source="${build.sourcelevel}"
108     fork="true">
109    
110 jsr166 1.68 <include name="**/*.java"/>
111 dl 1.83 <compilerarg value="-XDignore.symbol.file=true"/>
112 dl 1.74
113 dl 1.72 <!--
114 jsr166 1.68 <exclude name="java/lang/**"/>
115 dl 1.73 <compilerarg line="${build.args}"/>
116     <compilerarg line="-Xlint -Xmaxwarns 1000"/>
117 dl 1.72 -->
118 tim 1.1
119     </javac>
120 tim 1.27
121 tim 1.1 </target>
122    
123    
124 tim 1.59
125 tim 1.28 <target name="jar"
126 tim 1.59 depends="compile"
127     description="Builds library jar from compiled sources">
128    
129     <mkdir dir="${build.lib.dir}"/>
130    
131     <jar destfile="${product.jar}">
132     <fileset dir="${build.classes.dir}"/>
133     </jar>
134    
135     </target>
136    
137 tim 1.1
138    
139 tim 1.28 <target name="test"
140 tim 1.32 depends="init, configure-tests, report-tests"
141 tim 1.29 description="Runs all tests (requires JUnit 3.8.1 in ${ant.home}/lib)" />
142 tim 1.1
143    
144 tim 1.59
145     <target name="docs"
146     description="Builds javadocs with custom tags to build folder">
147    
148     <delete dir="${build.javadocs.dir}"/>
149     <mkdir dir="${build.javadocs.dir}"/>
150    
151     <javadoc destdir="${build.javadocs.dir}"
152 jsr166 1.87 link="http://download.oracle.com/javase/7/docs/api/"
153 tim 1.59 overview="${src.dir}/intro.html"
154 dl 1.80 sourcepath="${src.dir}:${jdksrc.dir}"
155 jsr166 1.82 >
156 tim 1.59
157     <packageset dir="${src.dir}"/>
158    
159     </javadoc>
160    
161     </target>
162    
163    
164    
165 tim 1.28 <target name="dist"
166     depends="init, dist-clean, dist-jar, dist-docs"
167 tim 1.16 description="Puts all distributable products in single hierarchy"/>
168 tim 1.1
169 tim 1.58
170 tim 1.42 <target name="release"
171     depends="dist"
172     description="Puts entire CVS tree, plus distribution productions, in a jar">
173    
174     <property name="release.jar" value="dist/jsr166-${version}-dist.jar"/>
175    
176     <jar basedir="${basedir}" destfile="${release.jar}">
177 tim 1.58 <!-- <exclude name="build/**"/> -->
178 tim 1.42 <exclude name="${release.jar}"/>
179     <exclude name="user.properties"/>
180     <exclude name="etc/notes/**"/>
181 tim 1.58 <exclude name="src/emulation/**"/>
182 tim 1.44 <exclude name="**/SyntaxTest.java"/>
183 tim 1.58 <exclude name="**/SuperfluousAbstract.java"/>
184 tim 1.42 </jar>
185    
186     </target>
187 tim 1.1
188 tim 1.59
189    
190 tim 1.11 <target name="clean"
191     description="Removes all build products">
192 tim 1.27
193 tim 1.11 <delete dir="${build.dir}"/>
194     <delete dir="${build.classes.dir}"/>
195     <delete dir="${build.lib.dir}"/>
196 tim 1.27
197 tim 1.1 </target>
198    
199    
200 tim 1.59
201 tim 1.11 <target name="dist-clean"
202     description="Removes all build and distribution products">
203 tim 1.27
204 tim 1.11 <delete dir="${dist.dir}"/>
205 tim 1.27
206 tim 1.9 </target>
207 tim 1.10
208    
209 tim 1.59
210 tim 1.28 <target name="dist-docs"
211     description="Builds javadocs without custom tags to dist folder">
212    
213     <delete dir="${dist.javadocs.dir}"/>
214     <mkdir dir="${dist.javadocs.dir}"/>
215    
216 jsr166 1.86 <!-- the packagenames="none" hack below prevents scanning the -->
217     <!-- sourcepath for packages -->
218    
219 tim 1.28 <javadoc destdir="${dist.javadocs.dir}"
220 jsr166 1.86 packagenames="none"
221 jsr166 1.87 link="http://download.oracle.com/javase/7/docs/api/"
222 jsr166 1.86 overview="${src.dir}/intro.html"
223     sourcepath="${src.dir}:${jdksrc.dir}" >
224     <fileset dir="${src.dir}" defaultexcludes="yes">
225     <include name="**/*.java"/>
226 dl 1.72 </fileset>
227 tim 1.28 </javadoc>
228 tim 1.14
229     </target>
230    
231    
232 tim 1.28
233 tim 1.11 <!-- Internal targets -->
234 tim 1.9
235 tim 1.16
236 tim 1.32 <target name="init">
237 tim 1.27
238 tim 1.11 <!-- Version is kept in a separate file -->
239     <loadfile property="version" srcFile="version.properties"/>
240     <echo>Building JSR-166 version ${version}</echo>
241 tim 1.54 <echo>java.home is ${java.home}</echo>
242 tim 1.27
243     </target>
244 jsr166 1.65
245    
246 tim 1.28 <target name="dist-jar"
247     depends="clean, jar">
248 tim 1.27
249 tim 1.11 <copy file="${product.jar}" todir="${dist.dir}"/>
250 tim 1.27
251 tim 1.11 </target>
252    
253    
254 tim 1.28 <target name="compile-tests"
255     depends="jar">
256 tim 1.27
257 tim 1.1 <mkdir dir="${build.testcases.dir}"/>
258 tim 1.37
259 tim 1.60 <javac srcdir="${tck.src.dir}"
260     destdir="${build.testcases.dir}"
261     debug="${build.debug}"
262     debuglevel="${build.debuglevel}"
263     deprecation="${build.deprecation}"
264     source="${build.sourcelevel}"
265     fork="true">
266    
267     <compilerarg value="${bootclasspath.args}"/>
268     <compilerarg line="${build.args}"/>
269 dl 1.84 <compilerarg value="-XDignore.symbol.file=true"/>
270 jsr166 1.65
271 tim 1.60 <classpath refid="test.classpath"/>
272    
273     </javac>
274    
275     <javac srcdir="${test.src.dir}"
276 tim 1.1 destdir="${build.testcases.dir}"
277     debug="${build.debug}"
278     debuglevel="${build.debuglevel}"
279     deprecation="${build.deprecation}"
280     source="${build.sourcelevel}"
281     fork="true">
282    
283 tim 1.60 <include name="jsr166/test/**"/>
284 jsr166 1.65
285 tim 1.59 <compilerarg value="${bootclasspath.args}"/>
286 tim 1.57 <compilerarg line="${build.args}"/>
287 dl 1.84 <compilerarg value="-XDignore.symbol.file=true"/>
288 jsr166 1.65
289 tim 1.57 <classpath refid="test.classpath"/>
290 tim 1.1
291     </javac>
292 tim 1.27
293 tim 1.62 <!--
294     <javac srcdir="${jtreg.src.dir}"
295     destdir="${build.testcases.dir}"
296     debug="${build.debug}"
297     debuglevel="${build.debuglevel}"
298     deprecation="${build.deprecation}"
299     source="${build.sourcelevel}"
300     fork="true">
301    
302     <compilerarg value="${bootclasspath.args}"/>
303     <compilerarg line="${build.args}"/>
304 dl 1.84 <compilerarg value="-XDignore.symbol.file=true"/>
305 jsr166 1.65
306 tim 1.62 <classpath refid="test.classpath"/>
307    
308     </javac>
309     -->
310    
311 tim 1.1 </target>
312 tim 1.11
313 tim 1.1
314 tim 1.28 <target name="run-tests"
315     depends="compile-tests">
316 tim 1.27
317     <!-- May be overridden by user.properties -->
318     <property name="testcase" value="*"/>
319    
320 tim 1.1 <mkdir dir="${build.reports.dir}"/>
321 tim 1.27
322 tim 1.1 <junit printsummary="true"
323     showoutput="true"
324     errorProperty="junit.failed"
325     failureProperty="junit.failed"
326 tim 1.12 dir="${build.reports.dir}"
327     fork="true">
328    
329 tim 1.59 <jvmarg value="${bootclasspath.args}"/>
330 tim 1.64 <jvmarg value="-server"/>
331     <jvmarg value="-showversion"/>
332 jsr166 1.65
333 tim 1.59 <classpath refid="test.classpath"/>
334 tim 1.1
335     <formatter type="xml"/>
336    
337 tim 1.62 <batchtest todir="${build.reports.dir}" unless="no.test.tck">
338 tim 1.60 <fileset dir="${tck.src.dir}">
339     <include name="**/${testcase}Test.java"/>
340     </fileset>
341 tim 1.62 </batchtest>
342 jsr166 1.65
343 tim 1.62 <batchtest todir="${build.reports.dir}" if="do.test.old">
344 tim 1.60 <fileset dir="${test.src.dir}">
345     <include name="jsr166/test/**/${testcase}Test.java"/>
346 tim 1.1 </fileset>
347     </batchtest>
348 tim 1.62
349 jsr166 1.65 <!--
350 tim 1.62 <batchtest todir="${build.reports.dir}" if="do.test.jtreg">
351     <fileset dir="${jtreg.src.dir}">
352     <include name="**/${testcase}Test.java"/>
353     </fileset>
354     </batchtest>
355     -->
356 tim 1.1
357     </junit>
358 tim 1.27
359 tim 1.1 </target>
360    
361    
362 tim 1.28 <target name="report-tests"
363     depends="run-tests">
364    
365 tim 1.54 <!-- Sets junit.report.format to frames if redirection is present,
366 tim 1.1 otherwise sets it to noframes. -->
367     <available property="junit.report.format"
368     value="frames"
369     classname="org.apache.xalan.lib.Redirect"
370     />
371     <property name="junit.report.format" value="noframes"/>
372    
373     <junitreport todir="${build.reports.dir}">
374     <fileset dir="${build.reports.dir}">
375     <include name="TEST-*.xml"/>
376     </fileset>
377 jsr166 1.75 <report format="${junit.report.format}" todir="${build.reports.dir}"
378 tim 1.1 />
379     </junitreport>
380    
381     <fail message="Test Cases Failed" if="junit.failed"/>
382 tim 1.28
383 tim 1.18 </target>
384    
385    
386 tim 1.32 <target name="configure-compiler">
387 tim 1.54
388     <property name="unchecked.option" value="-Xlint:unchecked"/>
389    
390     <condition property="warnunchecked.arg" value="${unchecked.option}">
391 tim 1.57 <istrue value="${build.warnunchecked}"/>
392 tim 1.32 </condition>
393    
394 tim 1.37 <property name="warnunchecked.arg" value=""/>
395 tim 1.34
396 tim 1.32
397     <!-- Common options in javac invocations -->
398 tim 1.57 <property name="build.args" value="${warnunchecked.arg}"/>
399 tim 1.33
400     </target>
401    
402    
403 tim 1.37 <target name="configure-tests"
404     depends="configure-compiler">
405 tim 1.28
406     <!-- junit.framework.Protectable is in JUnit 3.8.1 but not in 3.7 -->
407 tim 1.18 <available property="junit.available"
408 tim 1.28 classname="junit.framework.Protectable"/>
409    
410 tim 1.54 <!-- Xalan -->
411     <available property="xalan.available"
412     classname="org.apache.xalan.Version"/>
413    
414 jsr166 1.65
415 tim 1.59 <!-- Ant 1.6beta and later don't need or want this check -->
416 jsr166 1.65 <!--
417 tim 1.59 <fail message="Need JUnit 3.8.1 in ${ant.home}${file.separator}lib to run tests"
418     unless="junit.available"/>
419    
420 tim 1.54 <fail message="Need Xalan 2.5.1 jar in ${ant.home}${file.separator}lib to run tests"
421     unless="xalan.available"/>
422 tim 1.59 -->
423 tim 1.30
424 tim 1.28 </target>
425    
426    
427 jsr166 1.65 <!-- Various demos and test programs -->
428    
429    
430     <target name="loops" depends="init, configure-compiler"
431     description="Benchmark from Doug Lea's AQS paper">
432    
433     <mkdir dir="${build.loops.dir}"/>
434    
435     <javac srcdir="${loops.src.dir}"
436     destdir="${build.loops.dir}"
437     debug="${build.debug}"
438     debuglevel="${build.debuglevel}"
439     deprecation="${build.deprecation}"
440     source="${build.sourcelevel}"
441     fork="true">
442    
443     <compilerarg line="${build.args}"/>
444     <classpath refid="loops.classpath"/>
445 dl 1.84 <compilerarg value="-XDignore.symbol.file=true"/>
446 jsr166 1.65
447     </javac>
448    
449     <java classname="ALoops" fork="true">
450     <classpath refid="loops.classpath"/>
451     </java>
452    
453     </target>
454    
455    
456 dl 1.70 <!-- jsr166x -->
457    
458    
459     <target name="jsr166xcompile"
460     depends="init, configure-compiler"
461     description="Compiles jsr166x sources">
462    
463     <mkdir dir="${build.jsr166x.dir}"/>
464    
465     <javac srcdir="${jsr166xsrc.dir}"
466     destdir="${build.jsr166x.dir}"
467     debug="${build.debug}"
468     debuglevel="${build.debuglevel}"
469     deprecation="${build.deprecation}"
470     source="${build.sourcelevel}"
471     fork="true">
472    
473     <include name="**/*.java"/>
474     <compilerarg line="${build.args}"/>
475 dl 1.84 <compilerarg value="-XDignore.symbol.file=true"/>
476 dl 1.70
477     </javac>
478    
479     </target>
480    
481    
482    
483     <target name="jsr166xjar"
484     depends="jsr166xcompile"
485     description="Builds library jar from compiled sources">
486    
487     <mkdir dir="${build.jsr166xlib.dir}"/>
488    
489     <jar destfile="${jsr166xproduct.jar}">
490     <fileset dir="${build.jsr166x.dir}"/>
491     </jar>
492    
493     </target>
494    
495    
496    
497     <target name="jsr166xdocs"
498     description="Builds javadocs with custom tags to build folder">
499    
500     <delete dir="${build.jsr166xjavadocs.dir}"/>
501     <mkdir dir="${build.jsr166xjavadocs.dir}"/>
502    
503     <javadoc destdir="${build.jsr166xjavadocs.dir}"
504 jsr166 1.85 packagenames="jsr166x"
505 jsr166 1.87 link="http://download.oracle.com/javase/7/docs/api/"
506 jsr166 1.85 source="${build.sourcelevel}"
507     sourcepath="${topsrc.dir}:${jdksrc.dir}" />
508 dl 1.70
509     </target>
510    
511    
512     <target name="jsr166xdist"
513     depends="jsr166xdist-clean, jsr166xdist-jar, jsr166xdist-docs"
514     description="Puts all distributable products in single hierarchy"/>
515    
516    
517    
518     <target name="jsr166xclean"
519     description="Removes all build products">
520    
521     <delete dir="${build.jsr166x.dir}"/>
522     <delete dir="${build.jsr166xlib.dir}"/>
523    
524     </target>
525    
526    
527    
528     <target name="jsr166xdist-clean"
529     description="Removes all build and distribution products">
530    
531     </target>
532    
533    
534    
535     <target name="jsr166xdist-docs"
536     description="Builds javadocs without custom tags to dist folder">
537    
538     <delete dir="${dist.jsr166xjavadocs.dir}"/>
539     <mkdir dir="${dist.jsr166xjavadocs.dir}"/>
540    
541     <javadoc destdir="${dist.jsr166xjavadocs.dir}"
542 jsr166 1.85 packagenames="jsr166x"
543 jsr166 1.87 link="http://download.oracle.com/javase/7/docs/api/"
544 jsr166 1.85 source="${build.sourcelevel}"
545     sourcepath="${topsrc.dir}:${jdksrc.dir}" />
546 dl 1.70
547     </target>
548    
549     <target name="jsr166xdist-jar"
550     depends="jsr166xclean, jsr166xjar">
551    
552     <copy file="${jsr166xproduct.jar}" todir="${dist.dir}"/>
553    
554     </target>
555    
556 dl 1.74 <!-- jsr166y -->
557    
558    
559     <target name="jsr166ycompile"
560     depends="init, configure-compiler"
561     description="Compiles jsr166y sources">
562    
563     <mkdir dir="${build.jsr166y.dir}"/>
564    
565     <javac srcdir="${jsr166ysrc.dir}"
566     destdir="${build.jsr166y.dir}"
567     debug="${build.debug}"
568     debuglevel="${build.debuglevel}"
569     deprecation="${build.deprecation}"
570     source="${build.sourcelevel}"
571     fork="true">
572    
573     <include name="**/*.java"/>
574     <compilerarg line="${build.args}"/>
575 dl 1.83 <compilerarg value="-XDignore.symbol.file=true"/>
576 dl 1.74 <compilerarg value="${bootclasspath.args}"/>
577    
578     <!-- <compilerarg line="-Xlint -Xmaxwarns 1000"/> -->
579    
580     </javac>
581    
582     </target>
583    
584    
585    
586     <target name="jsr166yjar"
587     depends="jsr166ycompile"
588     description="Builds library jar from compiled sources">
589    
590     <mkdir dir="${build.jsr166ylib.dir}"/>
591    
592 dl 1.76 <jar destfile="${jsr166yproduct.jar}" index="true">
593 dl 1.74 <fileset dir="${build.jsr166y.dir}"/>
594     </jar>
595    
596     </target>
597    
598    
599    
600     <target name="jsr166ydocs"
601     description="Builds javadocs with custom tags to build folder">
602    
603     <delete dir="${build.jsr166yjavadocs.dir}"/>
604     <mkdir dir="${build.jsr166yjavadocs.dir}"/>
605    
606     <javadoc destdir="${build.jsr166yjavadocs.dir}"
607 jsr166 1.85 packagenames="jsr166y"
608 jsr166 1.87 link="http://download.oracle.com/javase/7/docs/api/"
609 jsr166 1.85 source="${build.sourcelevel}"
610     sourcepath="${topsrc.dir}:${jdksrc.dir}" />
611 dl 1.74
612     </target>
613    
614    
615     <target name="jsr166ydist"
616     depends="jsr166ydist-clean, jsr166ydist-jar, jsr166ydist-docs"
617     description="Puts all distributable products in single hierarchy"/>
618    
619    
620    
621     <target name="jsr166yclean"
622     description="Removes all build products">
623    
624     <delete dir="${build.jsr166y.dir}"/>
625     <delete dir="${build.jsr166ylib.dir}"/>
626    
627     </target>
628    
629    
630    
631     <target name="jsr166ydist-clean"
632     description="Removes all build and distribution products">
633    
634     </target>
635    
636     <target name="jsr166ydist-docs"
637     description="Builds javadocs without custom tags to dist folder">
638    
639     <delete dir="${dist.jsr166yjavadocs.dir}"/>
640     <mkdir dir="${dist.jsr166yjavadocs.dir}"/>
641    
642     <javadoc destdir="${dist.jsr166yjavadocs.dir}"
643 jsr166 1.85 packagenames="jsr166y"
644 jsr166 1.87 link="http://download.oracle.com/javase/7/docs/api/"
645 jsr166 1.85 source="${build.sourcelevel}"
646     sourcepath="${topsrc.dir}:${jdksrc.dir}" />
647 dl 1.74
648     </target>
649    
650     <target name="jsr166ydist-jar"
651     depends="jsr166yclean, jsr166yjar">
652    
653     <copy file="${jsr166yproduct.jar}" todir="${dist.dir}"/>
654    
655     </target>
656    
657 dl 1.76 <!-- extra166y -->
658    
659    
660     <target name="extra166ycompile"
661 dl 1.77 depends="init, configure-compiler, jsr166ycompile"
662 dl 1.76 description="Compiles extra166y sources">
663    
664     <mkdir dir="${build.extra166y.dir}"/>
665    
666     <javac srcdir="${extra166ysrc.dir}"
667     destdir="${build.extra166y.dir}"
668     debug="${build.debug}"
669 dl 1.77 classpath="${jsr166yproduct.jar}"
670 dl 1.76 debuglevel="${build.debuglevel}"
671     deprecation="${build.deprecation}"
672     source="${build.sourcelevel}"
673     fork="true">
674    
675     <include name="**/*.java"/>
676     <compilerarg line="${build.args}"/>
677 dl 1.83 <compilerarg value="-XDignore.symbol.file=true"/>
678 dl 1.76 <compilerarg value="${bootclasspath.args}"/>
679    
680     <!-- <compilerarg line="-Xlint -Xmaxwarns 1000"/> -->
681    
682     </javac>
683    
684     </target>
685    
686    
687    
688     <target name="extra166yjar"
689     depends="extra166ycompile"
690     description="Builds library jar from compiled sources">
691    
692     <mkdir dir="${build.extra166ylib.dir}"/>
693    
694     <jar destfile="${extra166yproduct.jar}" index="true">
695     <fileset dir="${build.extra166y.dir}"/>
696     </jar>
697    
698     </target>
699    
700    
701    
702     <target name="extra166ydocs"
703     description="Builds javadocs with custom tags to build folder">
704    
705     <delete dir="${build.extra166yjavadocs.dir}"/>
706     <mkdir dir="${build.extra166yjavadocs.dir}"/>
707    
708     <javadoc destdir="${build.extra166yjavadocs.dir}"
709 jsr166 1.85 packagenames="extra166y"
710 jsr166 1.87 link="http://download.oracle.com/javase/7/docs/api/"
711 jsr166 1.85 source="${build.sourcelevel}"
712     sourcepath="${topsrc.dir}:${jdksrc.dir}" />
713 dl 1.76
714     </target>
715    
716    
717     <target name="extra166ydist"
718     depends="extra166ydist-clean, extra166ydist-jar, extra166ydist-docs"
719     description="Puts all distributable products in single hierarchy"/>
720    
721    
722    
723     <target name="extra166yclean"
724     description="Removes all build products">
725    
726     <delete dir="${build.extra166y.dir}"/>
727     <delete dir="${build.extra166ylib.dir}"/>
728    
729     </target>
730    
731    
732    
733     <target name="extra166ydist-clean"
734     description="Removes all build and distribution products">
735    
736     </target>
737    
738     <target name="extra166ydist-docs"
739     description="Builds javadocs without custom tags to dist folder">
740    
741     <delete dir="${dist.extra166yjavadocs.dir}"/>
742     <mkdir dir="${dist.extra166yjavadocs.dir}"/>
743    
744     <javadoc destdir="${dist.extra166yjavadocs.dir}"
745 jsr166 1.85 packagenames="extra166y"
746 jsr166 1.87 link="http://download.oracle.com/javase/7/docs/api/"
747 jsr166 1.85 source="${build.sourcelevel}"
748     sourcepath="${topsrc.dir}:${jdksrc.dir}" />
749 dl 1.76
750     </target>
751    
752     <target name="extra166ydist-jar"
753     depends="extra166yclean, extra166yjar">
754    
755     <copy file="${extra166yproduct.jar}" todir="${dist.dir}"/>
756    
757     </target>
758    
759 tim 1.1 </project>