<target
depends="init"
description="Generates the Antdoc documentation of the AntDoc task."
name="antdoc.javadoc.antdoc"
>
<javadoc
author="true"
destdir="${TEMPORARY_DIRECTORY_PATH}/antdoc"
doclet="org.tonjac.ant.doclet.Doclet"
docletpath="${ant.home}/lib/antdoc2.jar"
sourcefiles=""
version="true"
windowtitle="Antdoc of the AntDoc task"
>
<package name="${ED_PACKAGE}.ant"/>
<classpath>
<fileset dir="${ant.home}/lib">
<include name="ant.jar"/>
</fileset>
</classpath>
<sourcepath>
<pathelement path="${JAVA_SOURCE_DIRECTORY_PATH}"/>
</sourcepath>
</javadoc>
</target>
|