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/08/19 00:29:19 UTC

svn commit: r432752 - /geronimo/trunk/bootstrap

Author: jdillon
Date: Fri Aug 18 15:29:18 2006
New Revision: 432752

URL: http://svn.apache.org/viewvc?rev=432752&view=rev
Log:
mvn clean first, seems like this helps ensure that the build is really clean, even though we rm all target dirs

Modified:
    geronimo/trunk/bootstrap

Modified: geronimo/trunk/bootstrap
URL: http://svn.apache.org/viewvc/geronimo/trunk/bootstrap?rev=432752&r1=432751&r2=432752&view=diff
==============================================================================
--- geronimo/trunk/bootstrap (original)
+++ geronimo/trunk/bootstrap Fri Aug 18 15:29:18 2006
@@ -53,11 +53,12 @@
     fi
     
     rm -rf "$DIRNAME/thirdparty"
-    mkdir -p "$DIRNAME/thirdparty"
     
     for x in `find "$DIRNAME" -name target -type d`; do
         rm -rf "$x"
     done
+    
+    mvn clean
 }
 
 stage() {
@@ -74,6 +75,7 @@
     echo "Building Specs..."
     
     (
+        mkdir -p "$DIRNAME/thirdparty"
         cd "$DIRNAME/thirdparty"
         
         svn co http://svn.apache.org/repos/asf/geronimo/specs/trunk specs
@@ -92,6 +94,7 @@
     echo "Building OpenEJB2..."
     
     (
+        mkdir -p "$DIRNAME/thirdparty"
         cd "$DIRNAME/thirdparty"
         
         svn co http://svn.codehaus.org/openejb/trunk/openejb2
@@ -111,8 +114,7 @@
     
     begin && (
         clean
-        stage "bootstrap" && \
-        stage "assemble"
+        mvn
     ) && complete $?
 }