[Fb-contrib-commit] fb-contrib build.xml,1.18,1.19
Brought to you by:
dbrosius
|
From: Dave B. <dbr...@us...> - 2005-12-05 04:48:59
|
Update of /cvsroot/fb-contrib/fb-contrib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11399 Modified Files: build.xml Log Message: add javadoc target Index: build.xml =================================================================== RCS file: /cvsroot/fb-contrib/fb-contrib/build.xml,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- build.xml 1 Dec 2005 04:01:55 -0000 1.18 +++ build.xml 5 Dec 2005 04:48:50 -0000 1.19 @@ -12,6 +12,7 @@ <property name="lib.dir" value="${basedir}/lib"/> <property name="etc.dir" value="${basedir}/etc"/> <property name="samples.dir" value="${basedir}/samples"/> + <property name="javadoc.dir" value="${basedir}/javadoc"/> <property name="javac.source" value="1.5"/> <property name="javac.target" value="jsr14"/> <property name="javac.deprecation" value="on"/> @@ -21,6 +22,7 @@ <target name="clean" description="removes all generated collateral"> <delete dir="${classes.dir}"/> + <delete dir="${javadoc.dir}"/> <delete file="${basedir}/fb-contrib.jar"/> <delete file="${basedir}/fb-contrib-src.zip"/> <delete> @@ -32,6 +34,7 @@ <target name="-init" description="prepares repository for a build"> <mkdir dir="${classes.dir}"/> + <mkdir dir="${javadoc.dir}"/> <path id="fb-contrib.classpath"> <pathelement location="${lib.dir}/findbugs.jar"/> <pathelement location="${lib.dir}/bcel.jar"/> @@ -112,4 +115,14 @@ </fileset> </zip> </target> + + <target name="javadoc" depends="-init" description="build the javadoc for the project"> + <javadoc packagenames="com.mebigfatguy.*" + sourcepath="${src.dir}" + destdir="${javadoc.dir}" + windowtitle="fb-contrib api"> + <doctitle><![CDATA[<h1>fb-contrib javadoc</h1>]]></doctitle> + <bottom><![CDATA[<i>Copyright © 2005 MeBigFatGuy.com. All Rights Reserved.</i>]]></bottom> + </javadoc> + </target> </project> \ No newline at end of file |