Author: ekoneil
Date: Wed Apr 20 14:53:50 2005
New Revision: 162082
URL: http://svn.apache.org/viewcvs?rev=162082&view=rev
Log:
Add a "clean.runtime" target to the NetUI build.xml file. Cleaning "coreWeb"
from the build.xml/clean target messes up a common scenario of how DRTs can be
run.
No reason to have to rebuild the entire DRT app every time a "clean deploy" is
done for the runtime.
BB: self
BVT: NetUI pass
Modified:
incubator/beehive/trunk/netui/build.xml
Modified: incubator/beehive/trunk/netui/build.xml
URL:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/build.xml?rev=162082&r1=162081&r2=162082&view=diff
==============================================================================
--- incubator/beehive/trunk/netui/build.xml (original)
+++ incubator/beehive/trunk/netui/build.xml Wed Apr 20 14:53:50 2005
@@ -15,8 +15,12 @@
<ant dir="ant" target="build" inheritAll="false"/>
</target>
- <target name="clean" description="Cleans all NetUI build products.">
+ <target name="clean.runtime" description="Clean the NetUI runtime">
<delete dir="./build/"/>
+ </target>
+
+ <target name="clean" description="Cleans all NetUI build products.">
+ <antcall target="clean.runtime"/>
<!-- Clean the drt output -->
<ant dir="${beehive.home}/netui/test/webapps/drt" antfile="build.xml"
target="clean" inheritAll="false" />