You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by bu...@apache.org on 2016/07/01 03:32:35 UTC

[3/4] hbase git commit: HBASE-16124 Make check_compatibility.sh less verbose when building HBase

HBASE-16124 Make check_compatibility.sh less verbose when building HBase

Signed-off-by: Sean Busbey <bu...@apache.org>


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

Branch: refs/heads/branch-1.3
Commit: 959eb2d22740d078ef1722b4c8832b6e4c61d13a
Parents: 7335a1f
Author: Dima Spivak <ds...@cloudera.com>
Authored: Mon Jun 27 11:29:23 2016 -0700
Committer: Sean Busbey <bu...@apache.org>
Committed: Thu Jun 30 22:31:39 2016 -0500

----------------------------------------------------------------------
 dev-support/check_compatibility.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/959eb2d2/dev-support/check_compatibility.sh
----------------------------------------------------------------------
diff --git a/dev-support/check_compatibility.sh b/dev-support/check_compatibility.sh
index 43f0036..5ecfd96 100755
--- a/dev-support/check_compatibility.sh
+++ b/dev-support/check_compatibility.sh
@@ -190,7 +190,7 @@ for ref in 1 2; do
       exit 2
     fi
     echo "Building ${COMMIT[${ref}]}..."
-    if ! mvn clean package -DskipTests; then
+    if ! mvn clean package --batch-mode -DskipTests; then
       echo "Maven could not successfully package ${COMMIT[${ref}]}. Exiting..." >&2
       exit 2
     fi
@@ -209,7 +209,7 @@ for ref in 1 2; do
         pushd ${SCRIPT_DIRECTORY}/target/compatibility/${ref} > /dev/null
         echo "The --no-checkout option was specified, but no JARs were found." \
             "Attempting to build ${COMMIT[${ref}]}..."
-        if ! mvn clean package -DskipTests; then
+        if ! mvn clean package --batch-mode -DskipTests; then
           echo "Maven could not successfully package ${COMMIT[${ref}]}. Exiting..." >&2
           exit 2
         fi