summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2008-05-25 09:21:28 +0000
committerPaul Buetow <paul@buetow.org>2008-05-25 09:21:28 +0000
commit983c9c82156c51e1e3c29f3a7d58e1d7d9cb1b70 (patch)
tree9a302560eb27a5860a6724d8e3ce48e3aa81abdd /build.xml
parent73d9798f8bccd2bfc3169e95790c7fc185701188 (diff)
javadoc task added.
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml13
1 files changed, 13 insertions, 0 deletions
diff --git a/build.xml b/build.xml
index 1dbf4b3..9581a26 100644
--- a/build.xml
+++ b/build.xml
@@ -52,4 +52,17 @@
<target name="testdist" depends="dist,rundist" />
<target name="test" depends="compile,run" />
+
+ <target name="javadoc" description="Generate Javadocs">
+ <mkdir dir="${basedir}/javadoc/"/>
+ <javadoc
+ destdir="${basedir}/javadoc/"
+ additionalparam="-J-Dorg.apache.commons.attributes.javadoc.CATaglet.sources=${basedir}">
+ <taglet
+ name="org.apache.commons.attributes.javadoc.CATaglet"
+ path="${ant.home}/lib/commons-attributes-compiler-2.2.jar"
+ />
+ <fileset dir="${basedir}/" includes="**/*.java" />
+ </javadoc>
+ </target>
</project>