You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2012/03/03 19:09:29 UTC

svn commit: r1296673 - /lucene/dev/nightly/common-maven.sh

Author: sarowe
Date: Sat Mar  3 18:09:29 2012
New Revision: 1296673

URL: http://svn.apache.org/viewvc?rev=1296673&view=rev
Log:
LUCENE-3825: Populate Maven POMs before attempting to use the Maven build

Modified:
    lucene/dev/nightly/common-maven.sh

Modified: lucene/dev/nightly/common-maven.sh
URL: http://svn.apache.org/viewvc/lucene/dev/nightly/common-maven.sh?rev=1296673&r1=1296672&r2=1296673&view=diff
==============================================================================
--- lucene/dev/nightly/common-maven.sh (original)
+++ lucene/dev/nightly/common-maven.sh Sat Mar  3 18:09:29 2012
@@ -11,14 +11,14 @@ echo ">>> Done removing Lucene/Solr arti
 
 cd $WORKSPACE/$ROOT_DIR
 
+echo ">>> Populating Maven POMs"
+$ANT_HOME/bin/ant get-maven-poms
+echo ">>> Done populating Maven POMs"
+
 echo ">>> Installing non-mavenized deps into the maven local repo"
 $M2_HOME/bin/mvn --batch-mode --non-recursive -Pbootstrap install
 echo ">>> Done installing non-mavenized deps into the maven local repo"
 
-echo ">>> Clearing the Ant build output"
-$M2_HOME/bin/mvn --batch-mode --fail-at-end clean
-echo ">>> Done clearing the Ant build output"
-
 echo ">>> Running the Maven build without tests"
 $M2_HOME/bin/mvn --batch-mode --fail-at-end -DskipTests install
 echo ">>> Done running the Maven build without tests"