* Add clean target and remove double invocation of package-modules target
This commit is contained in:
parent
e2dad09d4c
commit
0d0171f07d
1 changed files with 11 additions and 6 deletions
|
@ -74,6 +74,7 @@
|
||||||
<echo message=" app [name] --> gets an application from the cvs and zips it"/>
|
<echo message=" app [name] --> gets an application from the cvs and zips it"/>
|
||||||
<echo message=" module [name] --> gets a module from the cvs and zips it"/>
|
<echo message=" module [name] --> gets a module from the cvs and zips it"/>
|
||||||
<echo message=" core --> generates core for production updates (zip and tar.gz)"/>
|
<echo message=" core --> generates core for production updates (zip and tar.gz)"/>
|
||||||
|
<echo message=" clean --> clean up temporary build directories and files"/>
|
||||||
<echo message=""/>
|
<echo message=""/>
|
||||||
<echo message=" usage --> provides help on using the build tool (default)"/>
|
<echo message=" usage --> provides help on using the build tool (default)"/>
|
||||||
<echo message=""/>
|
<echo message=""/>
|
||||||
|
@ -136,7 +137,7 @@
|
||||||
|
|
||||||
|
|
||||||
<!-- =================================================================== -->
|
<!-- =================================================================== -->
|
||||||
<!-- Creates the javadoc API documentation -->
|
<!-- Creates the javadoc API documentation -->
|
||||||
<!-- =================================================================== -->
|
<!-- =================================================================== -->
|
||||||
<target name="javadocs" depends="init">
|
<target name="javadocs" depends="init">
|
||||||
<mkdir dir="${build.javadocs}"/>
|
<mkdir dir="${build.javadocs}"/>
|
||||||
|
@ -155,7 +156,7 @@
|
||||||
|
|
||||||
|
|
||||||
<!-- =================================================================== -->
|
<!-- =================================================================== -->
|
||||||
<!-- Create the jsdoc Framework documentation -->
|
<!-- Create the jsdoc Framework documentation -->
|
||||||
<!-- =================================================================== -->
|
<!-- =================================================================== -->
|
||||||
<target name="jsdocs" depends="init, package-modules">
|
<target name="jsdocs" depends="init, package-modules">
|
||||||
<cvs cvsRoot="${cvs.root.apps}" command="export" tag="${cvs.apps.tag}" package="reference" dest="${build.work}" />
|
<cvs cvsRoot="${cvs.root.apps}" command="export" tag="${cvs.apps.tag}" package="reference" dest="${build.work}" />
|
||||||
|
@ -242,9 +243,6 @@
|
||||||
<!-- checkout the demo apps (and zip manage-app) -->
|
<!-- checkout the demo apps (and zip manage-app) -->
|
||||||
<antcall target="package-apps" />
|
<antcall target="package-apps" />
|
||||||
|
|
||||||
<!-- checkout the helmaLib modules and add the zipped helmaTools -->
|
|
||||||
<antcall target="package-modules" />
|
|
||||||
|
|
||||||
<!-- create the main part of helma -->
|
<!-- create the main part of helma -->
|
||||||
<antcall target="package-raw">
|
<antcall target="package-raw">
|
||||||
<param name="distribution" value="main" />
|
<param name="distribution" value="main" />
|
||||||
|
@ -474,6 +472,13 @@
|
||||||
</zip>
|
</zip>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
<!-- =================================================================== -->
|
||||||
|
<!-- Cleans up temporary build directories -->
|
||||||
|
<!-- =================================================================== -->
|
||||||
|
<target name="clean" depends="init">
|
||||||
|
<delete dir="${build.work}" />
|
||||||
|
<delete dir="${build.classes}" />
|
||||||
|
</target>
|
||||||
|
|
||||||
<!-- =================================================================== -->
|
<!-- =================================================================== -->
|
||||||
<!-- Gets an application from the cvs and zips/targzs it -->
|
<!-- Gets an application from the cvs and zips/targzs it -->
|
||||||
|
@ -503,7 +508,7 @@
|
||||||
|
|
||||||
|
|
||||||
<!-- =================================================================== -->
|
<!-- =================================================================== -->
|
||||||
<!-- Checkout and zip a module -->
|
<!-- Checkout and zip a module -->
|
||||||
<!-- =================================================================== -->
|
<!-- =================================================================== -->
|
||||||
<target name="module" depends="init">
|
<target name="module" depends="init">
|
||||||
<cvs cvsRoot="${cvs.root.apps}" command="export" tag="${cvs.apps.tag}" package="${application}" dest="${build.work}" />
|
<cvs cvsRoot="${cvs.root.apps}" command="export" tag="${cvs.apps.tag}" package="${application}" dest="${build.work}" />
|
||||||
|
|
Loading…
Add table
Reference in a new issue