Skip to content

Commit

Permalink
Fix busted javadoc generation
Browse files Browse the repository at this point in the history
  • Loading branch information
ghelmling committed Mar 2, 2010
1 parent 3b4c630 commit 0ab0375
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<property name="src.dir" value="${basedir}/src/java" />
<property name="test.src.dir" value="${basedir}/test/java" />
<property name="test.jysrc.dir" value="${basedir}/test/jython" />
<property name="docs" value="${basedir}/docs" />

<path id="project.class.path">
<fileset dir="${lib.dir}" includes="**/*.jar" />
Expand Down Expand Up @@ -89,14 +90,15 @@
<!-- ====================== JavaDoc Generation ================================ -->

<target name="javadoc" description="Generate JavaDoc API docs">
<delete>
<delete failonerror="false">
<fileset dir="${docs}" />
</delete>
<javadoc sourcepath="src"
<mkdir dir="${docs}" />
<javadoc sourcepath="${src.dir}"
destdir="${docs}"
packagenames= "meetup.beeno.*"
author="true"
source="1.5"
source="1.6"
private="true"
version="true"
defaultexcludes="yes"
Expand Down

0 comments on commit 0ab0375

Please sign in to comment.