Repository: hbase
Updated Branches:
  refs/heads/HBASE-14220 d2056420b -> f6140d38b


WIP switch maven commands to use batch mode.


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/f6140d38
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/f6140d38
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/f6140d38

Branch: refs/heads/HBASE-14220
Commit: f6140d38b3426083a3280dfde6ffd6acea912cf2
Parents: d205642
Author: Sean Busbey <bus...@apache.org>
Authored: Mon Jul 31 12:28:43 2017 -0500
Committer: Sean Busbey <bus...@apache.org>
Committed: Mon Jul 31 12:28:43 2017 -0500

----------------------------------------------------------------------
 dev-support/Jenkinsfile | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/f6140d38/dev-support/Jenkinsfile
----------------------------------------------------------------------
diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile
index c830008..6b936b6 100644
--- a/dev-support/Jenkinsfile
+++ b/dev-support/Jenkinsfile
@@ -258,9 +258,9 @@ curl -L  -o personality.sh "${env.PROJET_PERSONALITY}"
         dir ("component") {
           sh '''#!/bin/bash -e
             echo "Clean..."
-            mvn -DskipTests clean
+            mvn --batch-mode -DskipTests clean
             echo "Step 3 Build the source tarball"
-            mvn -Prelease -Dmaven.repo.local="${WORKSPACE}/.m2-for-repo" 
install -DskipTests assembly:single 
-Dassembly.file=hbase-assembly/src/main/assembly/src.xml
+            mvn -Prelease --batch-mode 
-Dmaven.repo.local="${WORKSPACE}/.m2-for-repo" install -DskipTests 
assembly:single -Dassembly.file=hbase-assembly/src/main/assembly/src.xml
 '''
         }
         dir ("unpacked_src_tarball") {
@@ -268,15 +268,15 @@ curl -L  -o personality.sh "${env.PROJET_PERSONALITY}"
             echo "Unpack the source tarball
             tar --strip-components=1 -xzf 
../component/hbase-assembly/target/hbase-*-src.tar.gz
             echo "Building from source artifact."
-            mvn -DskipTests -Prelease 
-Dmaven.repo.local="${WORKSPACE}/.m2-for-src" clean install assembly:single
+            mvn -DskipTests -Prelease --batch-mode 
-Dmaven.repo.local="${WORKSPACE}/.m2-for-src" clean install assembly:single
             echo "Clean up after checking ability to build."
-            mvn -DskipTests clean
+            mvn -DskipTests --batch-mode clean
 '''
         }
         dir ("component") {
           sh '''#!/bin/bash -e
             echo "Clean up the source checkout"
-            mvn -DskipTests clean
+            mvn -DskipTests --batch-mode clean
             echo "Diff against source tree"
             diff --binary --recursive . ../unpacked_src_tarball 
>../diff_output || true
 '''

Reply via email to