You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by el...@apache.org on 2018/10/22 21:57:13 UTC

[1/5] hbase git commit: HBASE-21281 Upgrade bouncycastle to latest - addendum adds test dependency

Repository: hbase
Updated Branches:
  refs/heads/branch-2.0 7597393a2 -> 6bd36fef0
  refs/heads/branch-2.1 afa7d6ed4 -> ef41b0fd2


HBASE-21281 Upgrade bouncycastle to latest - addendum adds test dependency


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

Branch: refs/heads/branch-2.1
Commit: ef41b0fd2ec919635e466f3b2320754de00e5a85
Parents: b232746
Author: tedyu <yu...@gmail.com>
Authored: Sat Oct 20 09:28:30 2018 -0700
Committer: Josh Elser <el...@apache.org>
Committed: Mon Oct 22 17:12:11 2018 -0400

----------------------------------------------------------------------
 hbase-endpoint/pom.xml | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/ef41b0fd/hbase-endpoint/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-endpoint/pom.xml b/hbase-endpoint/pom.xml
index 154d074..25f98ea 100644
--- a/hbase-endpoint/pom.xml
+++ b/hbase-endpoint/pom.xml
@@ -178,6 +178,11 @@
       <scope>test</scope>
     </dependency>
     <dependency>
+      <groupId>org.bouncycastle</groupId>
+      <artifactId>bcprov-jdk15on</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
       <groupId>org.apache.hbase</groupId>
       <artifactId>hbase-server</artifactId>
     </dependency>


[2/5] hbase git commit: HBASE-21281 Update bouncycastle dependency - addendum adds dependency for hbase-server module

Posted by el...@apache.org.
HBASE-21281 Update bouncycastle dependency - addendum adds dependency for hbase-server module


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

Branch: refs/heads/branch-2.1
Commit: b232746d4cb811560f34417e28abccbe37d1c8c0
Parents: fedaedd
Author: tedyu <yu...@gmail.com>
Authored: Wed Oct 17 16:00:28 2018 -0700
Committer: Josh Elser <el...@apache.org>
Committed: Mon Oct 22 17:12:11 2018 -0400

----------------------------------------------------------------------
 hbase-server/pom.xml | 11 +++++++++++
 1 file changed, 11 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/b232746d/hbase-server/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-server/pom.xml b/hbase-server/pom.xml
index ff76c63..30f0046 100644
--- a/hbase-server/pom.xml
+++ b/hbase-server/pom.xml
@@ -533,9 +533,20 @@
       <scope>test</scope>
     </dependency>
     <dependency>
+      <groupId>org.bouncycastle</groupId>
+      <artifactId>bcprov-jdk15on</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
       <groupId>org.apache.hadoop</groupId>
       <artifactId>hadoop-minikdc</artifactId>
       <scope>test</scope>
+      <exclusions>
+        <exclusion>
+          <groupId>bouncycastle</groupId>
+          <artifactId>bcprov-jdk15</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.kerby</groupId>


[5/5] hbase git commit: HBASE-21281 Upgrade bouncycastle to latest - addendum adds test dependency

Posted by el...@apache.org.
HBASE-21281 Upgrade bouncycastle to latest - addendum adds test dependency


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

Branch: refs/heads/branch-2.0
Commit: 6bd36fef0697afb78f34835b9b80fb30db4aca92
Parents: 9526517
Author: tedyu <yu...@gmail.com>
Authored: Sat Oct 20 09:28:30 2018 -0700
Committer: Josh Elser <el...@apache.org>
Committed: Mon Oct 22 17:46:45 2018 -0400

----------------------------------------------------------------------
 hbase-endpoint/pom.xml | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/6bd36fef/hbase-endpoint/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-endpoint/pom.xml b/hbase-endpoint/pom.xml
index 1f201ed..35c82e0 100644
--- a/hbase-endpoint/pom.xml
+++ b/hbase-endpoint/pom.xml
@@ -178,6 +178,11 @@
       <scope>test</scope>
     </dependency>
     <dependency>
+      <groupId>org.bouncycastle</groupId>
+      <artifactId>bcprov-jdk15on</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
       <groupId>org.apache.hbase</groupId>
       <artifactId>hbase-server</artifactId>
     </dependency>


[4/5] hbase git commit: HBASE-21281 Update bouncycastle dependency - addendum adds dependency for hbase-server module

Posted by el...@apache.org.
HBASE-21281 Update bouncycastle dependency - addendum adds dependency for hbase-server module


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

Branch: refs/heads/branch-2.0
Commit: 95265170270668fbef375ce2416ba0400c82b6ce
Parents: 7597393
Author: tedyu <yu...@gmail.com>
Authored: Wed Oct 17 16:00:28 2018 -0700
Committer: Josh Elser <el...@apache.org>
Committed: Mon Oct 22 17:46:45 2018 -0400

----------------------------------------------------------------------
 hbase-server/pom.xml | 11 +++++++++++
 1 file changed, 11 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/95265170/hbase-server/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-server/pom.xml b/hbase-server/pom.xml
index 2fb433f..227685d 100644
--- a/hbase-server/pom.xml
+++ b/hbase-server/pom.xml
@@ -527,9 +527,20 @@
       <scope>test</scope>
     </dependency>
     <dependency>
+      <groupId>org.bouncycastle</groupId>
+      <artifactId>bcprov-jdk15on</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
       <groupId>org.apache.hadoop</groupId>
       <artifactId>hadoop-minikdc</artifactId>
       <scope>test</scope>
+      <exclusions>
+        <exclusion>
+          <groupId>bouncycastle</groupId>
+          <artifactId>bcprov-jdk15</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.kerby</groupId>


[3/5] hbase git commit: HBASE-21281 Upgrade bouncycastle to latest

Posted by el...@apache.org.
HBASE-21281 Upgrade bouncycastle to latest

BC 1.47 introduced some incompatible API changes which came in via
a new Maven artifact. We don't use any changed API in HBase. This
also removes some unnecessary dependencies on bcprov in other
modules (presumably, they are vestiges)

Signed-off-by: Mike Drob <md...@apache.org>
Signed-off-by: Ted Yu <te...@apache.org>


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

Branch: refs/heads/branch-2.1
Commit: fedaedd6a1a855456dd3ac062d5b884aa8b5c214
Parents: afa7d6e
Author: Josh Elser <el...@apache.org>
Authored: Tue Oct 9 13:06:10 2018 -0400
Committer: Josh Elser <el...@apache.org>
Committed: Mon Oct 22 17:12:11 2018 -0400

----------------------------------------------------------------------
 hbase-endpoint/pom.xml | 6 ------
 hbase-http/pom.xml     | 2 +-
 hbase-server/pom.xml   | 5 -----
 pom.xml                | 4 ++--
 4 files changed, 3 insertions(+), 14 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/fedaedd6/hbase-endpoint/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-endpoint/pom.xml b/hbase-endpoint/pom.xml
index 573fa19..154d074 100644
--- a/hbase-endpoint/pom.xml
+++ b/hbase-endpoint/pom.xml
@@ -229,12 +229,6 @@
       <artifactId>mockito-core</artifactId>
       <scope>test</scope>
     </dependency>
-    <!-- Some tests rely on Hadoop's KeyStoreTestUtil, which needs bc. -->
-    <dependency>
-      <groupId>org.bouncycastle</groupId>
-      <artifactId>bcprov-jdk16</artifactId>
-      <scope>test</scope>
-    </dependency>
   </dependencies>
   <profiles>
     <!-- Skip the tests in this module -->

http://git-wip-us.apache.org/repos/asf/hbase/blob/fedaedd6/hbase-http/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-http/pom.xml b/hbase-http/pom.xml
index e8ea2f3..8cf5e2a 100644
--- a/hbase-http/pom.xml
+++ b/hbase-http/pom.xml
@@ -263,7 +263,7 @@
     </dependency>
     <dependency>
       <groupId>org.bouncycastle</groupId>
-      <artifactId>bcprov-jdk16</artifactId>
+      <artifactId>bcprov-jdk15on</artifactId>
       <scope>test</scope>
     </dependency>
     <dependency>

http://git-wip-us.apache.org/repos/asf/hbase/blob/fedaedd6/hbase-server/pom.xml
----------------------------------------------------------------------
diff --git a/hbase-server/pom.xml b/hbase-server/pom.xml
index c6fc782..ff76c63 100644
--- a/hbase-server/pom.xml
+++ b/hbase-server/pom.xml
@@ -538,11 +538,6 @@
       <scope>test</scope>
     </dependency>
     <dependency>
-      <groupId>org.bouncycastle</groupId>
-      <artifactId>bcprov-jdk16</artifactId>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
       <groupId>org.apache.kerby</groupId>
       <artifactId>kerb-client</artifactId>
       <scope>test</scope>

http://git-wip-us.apache.org/repos/asf/hbase/blob/fedaedd6/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index f8b9fc9..f05c8f1 100755
--- a/pom.xml
+++ b/pom.xml
@@ -1381,7 +1381,7 @@
     <joni.version>2.1.11</joni.version>
     <jcodings.version>1.0.18</jcodings.version>
     <spy.version>2.12.2</spy.version>
-    <bouncycastle.version>1.46</bouncycastle.version>
+    <bouncycastle.version>1.60</bouncycastle.version>
     <kerby.version>1.0.1</kerby.version>
     <commons-crypto.version>1.0.0</commons-crypto.version>
     <curator.version>4.0.0</curator.version>
@@ -2038,7 +2038,7 @@
       </dependency>
       <dependency>
         <groupId>org.bouncycastle</groupId>
-        <artifactId>bcprov-jdk16</artifactId>
+        <artifactId>bcprov-jdk15on</artifactId>
         <version>${bouncycastle.version}</version>
         <scope>test</scope>
       </dependency>