Pass the proper classpath to the javadoc build.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@218 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2001-08-08 22:25:04 +00:00
parent 6e32cd319d
commit ac4494f1a6
+7 -2
View File
@@ -41,8 +41,13 @@
<target name="javadoc" depends="prepare">
<javadoc sourcepath="src/java"
packagenames="com.samskivert.*"
classpath="${deploy.home}/classes"
destdir="${javadoc.home}"/>
destdir="${javadoc.home}">
<classpath>
<fileset dir="${java.libraries}" includes="**/*.jar"/>
<fileset dir="lib" includes="**/*.jar"/>
<pathelement location="${deploy.home}/classes"/>
</classpath>
</javadoc>
</target>
<!-- the default target is to rebuild everything -->