You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jd...@apache.org on 2006/09/22 01:27:04 UTC

svn commit: r448734 - /geronimo/server/trunk/bootstrap.xml

Author: jdillon
Date: Thu Sep 21 16:27:02 2006
New Revision: 448734

URL: http://svn.apache.org/viewvc?view=rev&rev=448734
Log:
(GERONIMO-2371) Default to minimal clean, use -Dclean-full=true to nuke everything

Modified:
    geronimo/server/trunk/bootstrap.xml

Modified: geronimo/server/trunk/bootstrap.xml
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/bootstrap.xml?view=diff&rev=448734&r1=448733&r2=448734
==============================================================================
--- geronimo/server/trunk/bootstrap.xml (original)
+++ geronimo/server/trunk/bootstrap.xml Thu Sep 21 16:27:02 2006
@@ -94,10 +94,7 @@
     </target>
     
     <target name="minimal" depends="init">
-        <antcall target="clean">
-            <param name="clean-minimal" value="true"/>
-        </antcall>
-        
+        <antcall target="clean"/>
         <mvn goal="install"/>
     </target>
     
@@ -116,7 +113,7 @@
         <mkdir dir="${user.home}/.m2/repository"/>
     </target>
     
-    <target name="clean:minimal" depends="clean:init" if="clean-minimal">
+    <target name="clean:minimal" depends="clean:init" unless="clean-full">
         <echo>Cleaning (minimal)...</echo>
         
         <delete>
@@ -131,7 +128,7 @@
         </delete>
     </target>
     
-    <target name="clean:full" depends="clean:init" unless="clean-minimal">
+    <target name="clean:full" depends="clean:init" if="clean-full">
         <echo>Cleaning (full)...</echo>
         
         <delete dir="${user.home}/.m2/repository"/>