Make gump target output also javadocs: major change to "site" build.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352254 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Nicola Ken Barozzi 2002-03-19 09:22:47 +00:00
parent d978881cea
commit c909763194
3 changed files with 3 additions and 11 deletions

View File

@ -129,15 +129,7 @@
<!-- 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>
<!-- =================================================================== -->

View File

@ -77,7 +77,7 @@ tofile="${build.patchqueue}/patchqueue2text4dev.xsl"/>
<!-- =================================================================== -->
<!-- Calls the targets needed for Gump -->
<!-- =================================================================== -->
<target name="gump" depends="testmodule">
<target name="gump" depends="testmodule, apidocs">
</target>

View File

@ -46,6 +46,6 @@
<!-- =================================================================== -->
<!-- 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>