jstrachan 2002/06/08 09:45:10
Modified: jelly build.xml
Log:
Added a patched version of Alexandria's XMLDoclet which we'll use to autogenerate
the taglib documentation, using Jelly.
Revision Changes Path
1.39 +17 -2 jakarta-commons-sandbox/jelly/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-commons-sandbox/jelly/build.xml,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- build.xml 7 Jun 2002 09:36:11 -0000 1.38
+++ build.xml 8 Jun 2002 16:45:10 -0000 1.39
@@ -201,6 +201,21 @@
<target name="test" depends="maven:test"/>
<target name="dist" depends="maven:dist-build"/>
<target name="site" depends="maven:site"/>
+
+
+ <!-- runs the XML doclet -->
+ <target name="xml.doclet" depends="compile">
+ <mkdir dir="target/xmldoclet"/>
+ <path id="doclet.classpath">
+ <pathelement path="${maven.build.dest}"/>
+ </path>
+ <javadoc
+ sourcepath="src/java"
+ packagenames="org.apache.commons.jelly.tags.*"
+ doclet="org.apache.commons.jelly.util.XMLDoclet"
+ docletpathref="doclet.classpath">
+ </javadoc>
+ </target>
<!-- ========== Specific Test cases ======================================= -->
@@ -319,8 +334,8 @@
<arg value="two"/>
<arg value="three"/>
</java>
- </target>
-
+ </target>
+
<!--
<target name="demo.pnuts" depends="compile, checkPNuts"
description="Runs a pnuts demo which displays system properties">
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>