<!-- Creates the web site -->
<!-- =================================================================== -->
<target name="site" depends="docs, javadocs"
- description="Generates the web site (for site maintainers only)">
- <mkdir dir="${site}"/>
- <copy todir="${site}" filtering="off">
- <fileset dir="${build.docs}">
- </fileset>
- </copy>
- <copy todir="${site}/apidocs" filtering="off">
- <fileset dir="${build.javadocs}"/>
- </copy>
+ description="Generates the web site">
</target>
<!-- =================================================================== -->
<!-- =================================================================== -->
<!-- Calls the targets needed for Gump -->
<!-- =================================================================== -->
- <target name="gump" depends="testmodule">
+ <target name="gump" depends="testmodule, apidocs">
</target>
<!-- =================================================================== -->
<!-- Testing that all major targets work; useful before a commit -->
<!-- =================================================================== -->
- <target name="testmodule" depends="clean, test, docs"
+ <target name="testmodule" depends="clean, test, site"
description="Testing that all major targets work; useful before a commit ">
</target>