You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ge...@apache.org on 2010/10/15 08:21:16 UTC

svn commit: r1022828 - /geronimo/tck/branches/3.0/jaxb-tck-runner/run.sh

Author: genspring
Date: Fri Oct 15 06:21:16 2010
New Revision: 1022828

URL: http://svn.apache.org/viewvc?rev=1022828&view=rev
Log:
AHP need to pass some maven parameter to this shell

Modified:
    geronimo/tck/branches/3.0/jaxb-tck-runner/run.sh

Modified: geronimo/tck/branches/3.0/jaxb-tck-runner/run.sh
URL: http://svn.apache.org/viewvc/geronimo/tck/branches/3.0/jaxb-tck-runner/run.sh?rev=1022828&r1=1022827&r2=1022828&view=diff
==============================================================================
--- geronimo/tck/branches/3.0/jaxb-tck-runner/run.sh (original)
+++ geronimo/tck/branches/3.0/jaxb-tck-runner/run.sh Fri Oct 15 06:21:16 2010
@@ -13,7 +13,7 @@ control_c() {
 
 init() {
 
-  mvn install -q -DskipTests=true
+  mvn install -DskipTests=true $1
   if [ "$?" -ne 0 ]; then echo "Error pulling in JAXB dependencies"; exit 1; fi
 }
 
@@ -56,7 +56,7 @@ stopAgent() {
 # trap keyboard interrupt (control-c)
 trap control_c 2
 
-init
+init $1
 startAgent
 runTests
 stopAgent