Skip to content

Commit

Permalink
trivial fixes in ant build file to allow javadoc creation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Erich Nachbar committed Mar 2, 2010
1 parent 3b4c630 commit ab2c29f
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<property name="dist.dir" value="${basedir}/dist" />
<property name="lib.dir" value="${basedir}/lib" />
<property name="src.dir" value="${basedir}/src/java" />
<property name="docs" value="${basedir}/docs" />
<property name="test.src.dir" value="${basedir}/test/java" />
<property name="test.jysrc.dir" value="${basedir}/test/jython" />

Expand Down Expand Up @@ -89,19 +90,20 @@
<!-- ====================== JavaDoc Generation ================================ -->

<target name="javadoc" description="Generate JavaDoc API docs">
<delete>
<delete quiet="true">
<fileset dir="${docs}" />
</delete>
<javadoc sourcepath="src"
<mkdir dir="$(docs)" />
<javadoc sourcepath="${src.dir}"
destdir="${docs}"
packagenames= "meetup.beeno.*"
packagenames="meetup.beeno.*"
author="true"
source="1.5"
private="true"
version="true"
defaultexcludes="yes"
use="true"
maxmemory = "512m"
maxmemory="512m"
windowtitle="Meetup Beeno API Documentation"
doctitle="&lt;h1&gt;${project.title} Documentation (Version ${project.version})&lt;/h1&gt;"
bottom="Copyright &#169; 2004 - Meetup Inc">
Expand Down

0 comments on commit ab2c29f

Please sign in to comment.