Javadoc target now properly uses classpath

This commit is contained in:
Morgan 2011-07-19 09:40:40 -04:00
parent cd7793b0ac
commit d2b5c0cc64
1 changed files with 16 additions and 13 deletions

View File

@ -26,7 +26,7 @@
</target> </target>
<target name="compress" description="Compression target"> <target name="compress" description="Compression target">
<echo>Compressing</echo> <echo>Compressing</echo>
<jar jarfile="Vault.jar" basedir="bin" includes="net/**/*, plugin.yml, props/*"> <jar jarfile="Vault.jar" basedir="bin" includes="net/**/*, plugin.yml, props/*">
<manifest> <manifest>
<attribute name="Built-By" value="${user.name}" /> <attribute name="Built-By" value="${user.name}" />
@ -36,18 +36,21 @@
</target> </target>
<target name="javadoc" description="Generate JavaDoc"> <target name="javadoc" description="Generate JavaDoc">
<javadoc packagenames="net.milkbowl.vault.economy,net.milkbowl.vault.permission" <javadoc packagenames="net.milkbowl.vault.economy,net.milkbowl.vault.permission"
sourcepath="src" sourcepath="src"
destdir="javadoc" destdir="javadoc"
access="public" access="public"
windowtitle="Vault" windowtitle="Vault"
verbose="false" verbose="false"
author="true" author="true"
version="true"> version="true">
<bottom> <classpath>
<![CDATA[<b>MilkBukkit, 2011</b>]]> <fileset dir="lib" includes="**/*.jar"/>
</bottom> </classpath>
</javadoc> <bottom>
<![CDATA[<b>MilkBukkit, 2011</b>]]>
</bottom>
</javadoc>
</target> </target>
</project> </project>