Author: foconer
Date: Thu Feb 16 18:19:28 2006
New Revision: 378412

URL: http://svn.apache.org/viewcvs?rev=378412&view=rev
Log:
Bug: clean goal doesn't delete the amq's basedir generated target and xdocs 
directory.
Fix: Modified clean goal to delete these directories.

Modified:
    incubator/activemq/trunk/maven.xml

Modified: incubator/activemq/trunk/maven.xml
URL: 
http://svn.apache.org/viewcvs/incubator/activemq/trunk/maven.xml?rev=378412&r1=378411&r2=378412&view=diff
==============================================================================
--- incubator/activemq/trunk/maven.xml (original)
+++ incubator/activemq/trunk/maven.xml Thu Feb 16 18:19:28 2006
@@ -143,6 +143,10 @@
   </goal>
   
   <goal name="clean" prereqs="init">
+    <!-- should remove the base dir target and xdocs as well -->
+    <ant:delete dir="${basedir}/target"/>
+    <ant:delete dir="${basedir}/xdocs"/>
+    
     <j:set var="goal" value="clean"/>
     <attainGoal name="multiproject:goal"/>
   </goal>


Reply via email to