Skip to content

Instantly share code, notes, and snippets.

Created September 29, 2011 17:29
Show Gist options
  • Save anonymous/1251348 to your computer and use it in GitHub Desktop.
Save anonymous/1251348 to your computer and use it in GitHub Desktop.
<project name="HelloAntDoc" default="javadoc" basedir=".">
<import file="compile.helloant.build.xml"/>
<target name="javadoc" depends="compile">
<mkdir dir="${build.dir}/javadoc" />
<javadoc sourcepath="${src.dir}"
destdir="${build.dir}/javadoc"
author="true"
version="true"
use="true"
package="true"
overview="${src.dir}/overview.html"
windowtitle="HelloAnt API"
doctitle="HelloAnt API"
failonerror="${javadoc.failonerror}"
linksource="true" />
</target>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment