vmassol 02/01/16 14:49:08
Modified: build build-servletapi.xml
Log:
corrected problem with javadoc failing because of Aspect. Now using ajdoc Ant task
which understands Aspects. However, the result is not as nice as javadoc (but it
should be !) and I have submitted a bug report to the AspectJ.org team.
Revision Changes Path
1.31 +7 -2 jakarta-cactus/build/build-servletapi.xml
Index: build-servletapi.xml
===================================================================
RCS file: /home/cvs/jakarta-cactus/build/build-servletapi.xml,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- build-servletapi.xml 3 Jan 2002 15:49:48 -0000 1.30
+++ build-servletapi.xml 16 Jan 2002 22:49:08 -0000 1.31
@@ -208,6 +208,11 @@
<pathelement path="${java.class.path}"/>
</classpath>
</taskdef>
+ <taskdef name="ajdoc" classname="org.aspectj.tools.ant.taskdefs.Ajdoc" >
+ <classpath>
+ <pathelement path="${java.class.path}"/>
+ </classpath>
+ </taskdef>
</target>
@@ -374,7 +379,7 @@
<!-- Generate the javadoc for the current Servlet API -->
<target name="javadoc" depends="prepare-javadoc">
- <javadoc
+ <ajdoc
sourcepath="${out.src.dir}"
packagenames="org.apache.cactus.*"
destdir="${out.javadoc.dir}"
@@ -396,7 +401,7 @@
<pathelement path="${java.class.path}"/>
</classpath>
- </javadoc>
+ </ajdoc>
<!-- Create a gzip file of the javadoc. This is for putting to the
Cactus web site. It needs to be unzipped in the root document
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>