From 67e92e3be986b4d168ad3c425b2950ceb2b7b12b Mon Sep 17 00:00:00 2001 From: Dima Spivak Date: Mon, 27 Jun 2016 11:29:23 -0700 Subject: [PATCH] HBASE-16124 Make check_compatibility.sh less verbose when building HBase --- dev-support/check_compatibility.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-support/check_compatibility.sh b/dev-support/check_compatibility.sh index 1745172..1c76893 100755 --- a/dev-support/check_compatibility.sh +++ b/dev-support/check_compatibility.sh @@ -184,7 +184,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 @@ -205,7 +205,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 -- 2.5.4 (Apple Git-61)