diff options
| author | Paul Buetow <paul@buetow.org> | 2008-05-25 09:21:28 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-05-25 09:21:28 +0000 |
| commit | 983c9c82156c51e1e3c29f3a7d58e1d7d9cb1b70 (patch) | |
| tree | 9a302560eb27a5860a6724d8e3ce48e3aa81abdd /build.xml | |
| parent | 73d9798f8bccd2bfc3169e95790c7fc185701188 (diff) | |
javadoc task added.
Diffstat (limited to 'build.xml')
| -rw-r--r-- | build.xml | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -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> |
