cziegeler 2003/02/25 06:15:10
Modified: . build.xml
Log:
Updating build system:
- Choosing correct sources for javadocs builds
- Applying patch for javadocs and jdk1.3 from Matthias Stoeckel
- Deleting built ant tasks when cleaning project
Revision Changes Path
1.332 +11 -8 xml-cocoon2/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-cocoon2/build.xml,v
retrieving revision 1.331
retrieving revision 1.332
diff -u -r1.331 -r1.332
--- build.xml 25 Feb 2003 11:39:54 -0000 1.331
+++ build.xml 25 Feb 2003 14:15:10 -0000 1.332
@@ -510,7 +510,6 @@
<!-- Creates Javadocs -->
<target name="javadocs" depends="prepare-core, javadocs_done"
unless="javadocs.notrequired" description="Builds the API documentation (javadocs)">
<javadoc packagenames="${packages}.*"
- additionalparam="-breakiterator -quiet"
destdir="${build.javadocs}"
author="true"
version="true"
@@ -520,15 +519,16 @@
windowtitle="${Name} API ${version} [${TODAY}]"
doctitle="${Name} API ${version}"
bottom="Copyright © ${year} Apache Software Foundation. All
Rights Reserved."
- stylesheetfile="${resource.styles}/javadoc.css"
+ stylesheetfile="${resources.styles}/javadoc.css"
useexternalfile="yes">
+ <fileset dir="${java}">
+ <include name="**/*.java"/>
+ </fileset>
+ <fileset dir="${deprecated.src}">
+ <include name="**/*.java"/>
+ </fileset>
<fileset dir="${build}">
- <include name="src/**/*.java"/>
<include name="blocks/**/*.java"/>
- <include name="deprecated/**/*.java"/>
- </fileset>
- <fileset dir="${blocks}">
- <include name="**/mocks/**/*.java"/>
</fileset>
<classpath refid="classpath"/>
</javadoc>
@@ -909,7 +909,10 @@
<!-- Clean the build -->
<target name="clean" depends="init">
+ <!-- Delete the build directory -->
<delete dir="${build}"/>
+ <!-- Delete our own ant tasks -->
+ <delete dir="${tools.tasks}"/>
</target>
<!-- Clean the webapp -->