cmlenz 2003/01/04 08:24:59
Modified: framework build.xml
Log:
- Explicitly specify the path to overview.html. Javadoc seems to be
confused by the multiple filesets we specify.
- Split the packages overview page into 2 separate sections
"Public API" and "Internal API" using nested <group> elements.
Revision Changes Path
1.37 +14 -0 jakarta-cactus/framework/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-cactus/framework/build.xml,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- build.xml 3 Jan 2003 15:51:49 -0000 1.36
+++ build.xml 4 Jan 2003 16:24:59 -0000 1.37
@@ -520,8 +520,22 @@
use="true"
windowtitle="${project.name.text} ${project.version}"
doctitle="${project.name.text} ${project.version}"
+ overview="${src.java.share.dir}/overview.html"
bottom="Copyright &copy; ${year} Apache Software Foundation.
All Rights Reserved.">
+
+ <group title="Public API">
+ <package name="org.apache.cactus"/>
+ <package name="org.apache.cactus.client.authentication"/>
+ <package name="org.apache.cactus.extension.jsp"/>
+ </group>
+ <group title="Internal API">
+ <package name="org.apache.cactus.client"/>
+ <package name="org.apache.cactus.extension.jetty"/>
+ <package name="org.apache.cactus.server"/>
+ <package name="org.apache.cactus.server.runner"/>
+ <package name="org.apache.cactus.util"/>
+ </group>
<sourcepath>
<pathelement location="${src.java.share.dir}"/>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>