[jboss-cvs] JBossAS SVN: r92425 - projects/jboss-osgi/trunk/hudson/hudson-home.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Aug 17 09:49:12 EDT 2009


Author: thomas.diesler at jboss.com
Date: 2009-08-17 09:49:12 -0400 (Mon, 17 Aug 2009)
New Revision: 92425

Modified:
   projects/jboss-osgi/trunk/hudson/hudson-home/command.sh
Log:
Temporarily remove maven -o switch

Modified: projects/jboss-osgi/trunk/hudson/hudson-home/command.sh
===================================================================
--- projects/jboss-osgi/trunk/hudson/hudson-home/command.sh	2009-08-17 13:47:07 UTC (rev 92424)
+++ projects/jboss-osgi/trunk/hudson/hudson-home/command.sh	2009-08-17 13:49:12 UTC (rev 92425)
@@ -68,7 +68,7 @@
 # Build distro
 #
 cd $OSGIDIR
-MVN_CMD="mvn -U -Preactor,distro $ENVIRONMENT clean install"
+MVN_CMD="mvn -U -Pdistro $ENVIRONMENT clean install"
 echo $MVN_CMD; $MVN_CMD; MVN_STATUS=$?
 if [ $MVN_STATUS -ne 0 ]; then
   echo maven exit status $MVN_STATUS
@@ -86,7 +86,7 @@
 #
 # log dependency tree
 #
-MVN_CMD="mvn -o $ENVIRONMENT -Preactor dependency:tree"
+MVN_CMD="mvn $ENVIRONMENT dependency:tree"
 echo $MVN_CMD; $MVN_CMD | tee $WORKSPACE/dependency-tree.txt
 
 #
@@ -108,7 +108,7 @@
 #
 # execute tests
 #
-MVN_CMD="mvn -o -fae $ENVIRONMENT -Preactor test"
+MVN_CMD="mvn -fae $ENVIRONMENT test"
 echo $MVN_CMD; $MVN_CMD 2>&1 | tee $WORKSPACE/tests.log
 cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
 cat $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$CONTAINER.txt || :




More information about the jboss-cvs-commits mailing list