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/30 20:49:51 UTC

[5/5] hbase git commit: HBASE-16073 update compatibility_checker for jacc dropping comma sep args

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

Branch: refs/heads/branch-1
Commit: 854e796ea93242f3bb91d900e8fe37dc7a3fb4ef
Parents: 13535f4
Author: Dima Spivak <ds...@cloudera.com>
Authored: Mon Jun 20 12:45:27 2016 -0700
Committer: Sean Busbey <bu...@apache.org>
Committed: Thu Jun 30 15:48:13 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/854e796e/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