You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by ek...@apache.org on 2004/09/25 20:19:50 UTC

svn commit: rev 47213 - incubator/beehive/trunk/netui/test/webapps/drt

Author: ekoneil
Date: Sat Sep 25 11:19:49 2004
New Revision: 47213

Modified:
   incubator/beehive/trunk/netui/test/webapps/drt/build.xml
Log:
In SVN 47202, the distribution of the NetUI webapp runtime got less aggressive in how it removed JARs from webapps that need to delete NetUI.  As a result, callers need to make sure they cleanup their own JARs as needed.

This change makes that fix for the NetUI coreWeb DRTs so that the test recorder JARs don't exist in the webapp.

BB: self
DRT: NetUI pass



Modified: incubator/beehive/trunk/netui/test/webapps/drt/build.xml
==============================================================================
--- incubator/beehive/trunk/netui/test/webapps/drt/build.xml	(original)
+++ incubator/beehive/trunk/netui/test/webapps/drt/build.xml	Sat Sep 25 11:19:49 2004
@@ -80,6 +80,10 @@
             <property name="webapp.dir" location="${app.dir}/drt/${webapp.name}"/>
         </ant>
 
+        <delete failOnError="false">
+            <fileset dir="${app.dir}/drt/${webapp.name}/WEB-INF/lib" includes="**/*.jar"/>
+        </delete>
+
         <echo message="--------------------------------------------------"/>
         <echo message="|     NetUI coreWeb DRT webapp clean ending      |"/>
         <echo message="--------------------------------------------------"/>