curcuru 00/08/23 06:11:35
Modified: . build.xml
Log:
Update javadoc target to use src.dir instead of build.src
since we no longer copy all sources to the build directory
Revision Changes Path
1.28 +11 -4 xml-xalan/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-xalan/build.xml,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- build.xml 2000/08/22 20:41:05 1.27
+++ build.xml 2000/08/23 13:11:33 1.28
@@ -51,7 +51,7 @@
- Much of this file stolen from Stefano's xml-xerces build.xml
- $Id: build.xml,v 1.27 2000/08/22 20:41:05 curcuru Exp $
+ $Id: build.xml,v 1.28 2000/08/23 13:11:33 curcuru Exp $
==================================================================== -->
@@ -197,14 +197,21 @@
<!-- explicitly remove depends=package to make automated JDK 1.1.8 builds
easier -->
<target name="javadocs" depends="prepare.docs"> <!-- xalan.jar used by
doc.generator -->
+ <!-- Note: unfortunately this task will create the Javadoc package-level
files and
+ put them in the local source tree, but clean doesn't currently
clean them up.
+ This doesn't interfere with any other targets though, and shouldn't
leave
+ too much extra stuff around. The main alternative would be to go
back to
+ copying the entire source tree into the ./build dir, so that
javadoc can
+ find both the sources and the package files there
+ -->
<java fork="yes" classname="${doc.generator}"
classpath="${java.class.path}:${build.dir}/${xalan.jar}"
- args="loaderConfig=${xdocs.javadocloader}
targetDirectory=${build.src} ${xdocs.javadocbook} ${xdocs.style}"/>
+ args="loaderConfig=${xdocs.javadocloader}
targetDirectory=${src.dir} ${xdocs.javadocbook} ${xdocs.style}"/>
<javadoc
public="true"
doclet="xalanjdoc.Standard"
- sourcepath="${build.src}"
- overview="${build.src}/javadocOverview.html"
+ sourcepath="${src.dir}"
+ overview="${src.dir}/javadocOverview.html"
packagenames="org.apache.xalan.xpath,org.apache.xalan.xpath.xdom,org.apache.xalan.xpath.dtm,org.apache.xalan.xpath.xml,org.apache.xalan.xslt,org.apache.xalan.xslt.trace,org.apache.xalan.xslt.client,org.apache.xalan.xslt.extensions"
group="XSLT_Packages org.apache.xalan.xslt*,XPath_Packages
org.apache.xalan.xpath*"
destdir="${build.apidocs}"