You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by ev...@apache.org on 2005/07/16 10:53:53 UTC

svn commit: r219300 - in /maven/continuum/trunk: build.bat build.sh

Author: evenisse
Date: Sat Jul 16 01:53:52 2005
New Revision: 219300

URL: http://svn.apache.org/viewcvs?rev=219300&view=rev
Log:
running "m2 clean:clean install" is sufficient

Modified:
    maven/continuum/trunk/build.bat
    maven/continuum/trunk/build.sh

Modified: maven/continuum/trunk/build.bat
URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/build.bat?rev=219300&r1=219299&r2=219300&view=diff
==============================================================================
--- maven/continuum/trunk/build.bat (original)
+++ maven/continuum/trunk/build.bat Sat Jul 16 01:53:52 2005
@@ -29,9 +29,4 @@
 @REM Reaching here means variables are defined and arguments have been captured
 :endInit
 
-call m2 -N install %MAVEN_CMD_LINE_ARGS%
-cd continuum-notifiers
-call m2 -N install %MAVEN_CMD_LINE_ARGS%
-cd ..
-call m2 -r -Dmaven.reactor.includes=*/pom.xml clean:clean %MAVEN_CMD_LINE_ARGS%
-call m2 -r install %MAVEN_CMD_LINE_ARGS%
+call m2 clean:clean install %MAVEN_CMD_LINE_ARGS%

Modified: maven/continuum/trunk/build.sh
URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/build.sh?rev=219300&r1=219299&r2=219300&view=diff
==============================================================================
--- maven/continuum/trunk/build.sh (original)
+++ maven/continuum/trunk/build.sh Sat Jul 16 01:53:52 2005
@@ -4,8 +4,5 @@
 set -x
 
 (
-  m2 -N install "$@"
-  (cd continuum-notifiers && m2 -N install "$@" )
-  m2 -r -Dmaven.reactor.includes=*/pom.xml clean:clean "$@"
-  m2 -r install "$@"
+  m2 clean:clean install "$@"
 ) 2>&1 | tee result.log