rwaldhoff 2003/02/18 11:45:16
Modified: functor build.xml
Log:
add javadoc.classpath classpath ref, and use it
add Generated ${TODAY} to javadoc footer
Revision Changes Path
1.8 +8 -4 jakarta-commons-sandbox/functor/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-commons-sandbox/functor/build.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- build.xml 10 Feb 2003 20:02:25 -0000 1.7
+++ build.xml 18 Feb 2003 19:45:15 -0000 1.8
@@ -76,6 +76,10 @@
<pathelement location="${junit.jar}"/>
</path>
+ <path id="javadoc.classpath">
+ <pathelement location="${build.home}/classes"/>
+ </path>
+
<!-- ========== Test Execution Defaults =================================== -->
@@ -163,15 +167,15 @@
<mkdir dir="${dist.home}/docs"/>
<mkdir dir="${dist.home}/docs/api"/>
<javadoc destdir="${dist.home}/docs/api"
+ sourcepath="${source.home}"
packagenames="org.apache.commons.*"
author="false"
private="true"
version="true"
doctitle="<h1>${component.title} (Version
${component.version})</h1>"
windowtitle="${component.title} (Version ${component.version})"
- bottom="Copyright (c) 2003 - Apache Software Foundation">
- <classpath refid="compile.classpath"/>
- <fileset dir="${source.home}"/>
+ bottom="Copyright (c) 2003 - Apache Software Foundation. Generated
${TODAY}.">
+ <classpath refid="javadoc.classpath"/>
</javadoc>
</target>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]