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 2011/01/27 19:55:48 UTC

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

Author: sarowe
Date: Thu Jan 27 18:55:47 2011
New Revision: 1064253

URL: http://svn.apache.org/viewvc?rev=1064253&view=rev
Log:
Added mvn cmdline option -B (batch mode) to hopefully improve download progress output

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=1064253&r1=1064252&r2=1064253&view=diff
==============================================================================
--- lucene/dev/nightly/common-maven.sh (original)
+++ lucene/dev/nightly/common-maven.sh Thu Jan 27 18:55:47 2011
@@ -24,11 +24,11 @@ $ANT_HOME/bin/ant -Dversion=$MAVEN_ARTIF
 echo ">>> Done getting the Maven POMs"
 
 echo ">>> Installing non-mavenized deps into the maven local repo"
-$M2_HOME/bin/mvn -N -P bootstrap install
+$M2_HOME/bin/mvn -B -N -P bootstrap install
 echo ">>> Done installing non-mavenized deps into the maven local repo"
 
 echo ">>> Running the Maven build"
-$M2_HOME/bin/mvn clean install
+$M2_HOME/bin/mvn -B clean install
 echo ">>> Done running the Maven build"
 
 echo ">>> Saving ~/.m2/repository/ to $SAVED_MAVEN_LOCAL_REPO"