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:55:38 UTC

[4/5] 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/f2cabf9e
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/f2cabf9e
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/f2cabf9e

Branch: refs/heads/branch-1.2
Commit: f2cabf9ea7096790c10c5f86b47a5c643e615f0c
Parents: be3b9f4
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:44:59 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/f2cabf9e/dev-support/check_compatibility.sh
----------------------------------------------------------------------
diff --git a/dev-support/check_compatibility.sh b/dev-support/check_compatibility.sh
index 182cea7..249124d 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
@@ -211,7 +211,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