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/06/21 20:48:13 UTC

hbase git commit: HBASE-16073 update compatibility_checker for jacc dropping comma sep args

Repository: hbase
Updated Branches:
  refs/heads/master 152594560 -> ef90ecc00


HBASE-16073 update compatibility_checker for jacc dropping comma sep args

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

Branch: refs/heads/master
Commit: ef90ecc00c01cba9b8fbc84368096cdb380a4f7e
Parents: 1525945
Author: Dima Spivak <ds...@cloudera.com>
Authored: Mon Jun 20 12:45:27 2016 -0700
Committer: Sean Busbey <bu...@apache.org>
Committed: Tue Jun 21 15:47:41 2016 -0500

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/ef90ecc0/dev-support/check_compatibility.sh
----------------------------------------------------------------------
diff --git a/dev-support/check_compatibility.sh b/dev-support/check_compatibility.sh
index 95dba00..1745172 100755
--- a/dev-support/check_compatibility.sh
+++ b/dev-support/check_compatibility.sh
@@ -234,7 +234,8 @@ for ref in 1 2; do
   JARS[${ref}]=$(paste -s -d , <(echo "${JARS}"))
 done
 
-# Download the Java API Compliance Checker (Java ACC) into /dev-support/target/compatibility.
+# Download the Java API Compliance Checker (Java ACC) v. 1.7 (see HBASE-16073) into
+# /dev-support/target/compatibility.
 # Note: Java API Compliance Checker (Java ACC) is licensed under the GNU GPL or LGPL. For more
 #       information, visit http://ispras.linuxbase.org/index.php/Java_API_Compliance_Checker .
 
@@ -242,7 +243,7 @@ done
 if [ ! -d ${SCRIPT_DIRECTORY}/target/compatibility/javaACC ] || [ -n "${FORCE_DOWNLOAD}" ]; then
   echo "Downloading Java API Compliance Checker..."
   rm -rf ${SCRIPT_DIRECTORY}/target/compatibility/javaACC
-  if ! git clone https://github.com/lvc/japi-compliance-checker.git \
+  if ! git clone https://github.com/lvc/japi-compliance-checker.git -b 1.7 \
       ${SCRIPT_DIRECTORY}/target/compatibility/javaACC; then
     echo "Failed to download Java API Compliance Checker. Exiting..." >&2
     exit 2