This is an automated email from the ASF dual-hosted git repository.

sankarh pushed a commit to branch branch-3
in repository https://gitbox.apache.org/repos/asf/hive.git


The following commit(s) were added to refs/heads/branch-3 by this push:
     new f91bbd5fb53 HIVE-27722: Added org.bouncycastle as dependency to 
branch-3 (#4737)
f91bbd5fb53 is described below

commit f91bbd5fb53c4ba11f8250d9169390315dfda917
Author: Aman Raj <104416558+amanraj2...@users.noreply.github.com>
AuthorDate: Tue Sep 26 16:40:27 2023 +0530

    HIVE-27722: Added org.bouncycastle as dependency to branch-3 (#4737)
    
    Signed-off-by: Sankar Hariappan <sank...@apache.org>
    Closes (#4737)
---
 hcatalog/pom.xml           | 5 +++++
 itests/hive-unit/pom.xml   | 4 ++++
 itests/qtest-spark/pom.xml | 4 ++++
 kryo-registrator/pom.xml   | 6 ++++++
 pom.xml                    | 4 ++++
 ql/pom.xml                 | 8 ++++++++
 spark-client/pom.xml       | 4 ++++
 7 files changed, 35 insertions(+)

diff --git a/hcatalog/pom.xml b/hcatalog/pom.xml
index bf642ba0196..c529767463b 100644
--- a/hcatalog/pom.xml
+++ b/hcatalog/pom.xml
@@ -47,6 +47,11 @@
   </modules>
 
   <dependencies>
+    <dependency>
+      <groupId>org.bouncycastle</groupId>
+      <artifactId>bcpkix-jdk15on</artifactId>
+      <version>1.60</version>
+    </dependency>
     <dependency>
       <groupId>org.mockito</groupId>
       <artifactId>mockito-all</artifactId>
diff --git a/itests/hive-unit/pom.xml b/itests/hive-unit/pom.xml
index 533165f6eaf..03ba983ed3a 100644
--- a/itests/hive-unit/pom.xml
+++ b/itests/hive-unit/pom.xml
@@ -519,6 +519,10 @@
               <groupId>com.esotericsoftware.kryo</groupId>
               <artifactId>kryo</artifactId>
             </exclusion>
+              <exclusion>
+                  <groupId>org.bouncycastle</groupId>
+                  <artifactId>bcprov-jdk15on</artifactId>
+              </exclusion>
           </exclusions>
         </dependency>
       </dependencies>
diff --git a/itests/qtest-spark/pom.xml b/itests/qtest-spark/pom.xml
index 0209bc81362..cb22da29d07 100644
--- a/itests/qtest-spark/pom.xml
+++ b/itests/qtest-spark/pom.xml
@@ -59,6 +59,10 @@
             <groupId>commmons-logging</groupId>
             <artifactId>commons-logging</artifactId>
           </exclusion>
+          <exclusion>
+            <groupId>org.bouncycastle</groupId>
+            <artifactId>bcprov-jdk15on</artifactId>
+          </exclusion>
       </exclusions>
     </dependency>
     <dependency>
diff --git a/kryo-registrator/pom.xml b/kryo-registrator/pom.xml
index 0589e2b8e4e..87193e6e125 100644
--- a/kryo-registrator/pom.xml
+++ b/kryo-registrator/pom.xml
@@ -43,6 +43,12 @@
       <artifactId>spark-core_${scala.binary.version}</artifactId>
       <version>${spark.version}</version>
       <optional>true</optional>
+      <exclusions>
+        <exclusion>
+          <groupId>org.bouncycastle</groupId>
+          <artifactId>bcprov-jdk15on</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
   </dependencies>
 
diff --git a/pom.xml b/pom.xml
index a07c7627a81..91571307d24 100644
--- a/pom.xml
+++ b/pom.xml
@@ -960,6 +960,10 @@
             <groupId>org.apache.hadoop</groupId>
             <artifactId>hadoop-core</artifactId>
           </exclusion>
+          <exclusion>
+            <groupId>org.bouncycastle</groupId>
+            <artifactId>bcprov-jdk15on</artifactId>
+          </exclusion>
         </exclusions>
       </dependency>
       <dependency>
diff --git a/ql/pom.xml b/ql/pom.xml
index 5df0873394f..bcd9fa40b8b 100644
--- a/ql/pom.xml
+++ b/ql/pom.xml
@@ -711,6 +711,10 @@
       <version>${spark.version}</version>
       <optional>true</optional>
       <exclusions>
+        <exclusion>
+          <groupId>org.bouncycastle</groupId>
+          <artifactId>bcprov-jdk15on</artifactId>
+        </exclusion>
        <exclusion>
          <groupId>com.esotericsoftware.kryo</groupId>
          <artifactId>kryo</artifactId>
@@ -731,6 +735,10 @@
          <groupId>org.glassfish.jersey.core</groupId>
          <artifactId>*</artifactId>
        </exclusion>
+       <exclusion>
+          <groupId>org.bouncycastle</groupId>
+          <artifactId>bcprov-jdk15on</artifactId>
+        </exclusion>
      </exclusions>
    </dependency>
     <dependency>
diff --git a/spark-client/pom.xml b/spark-client/pom.xml
index aa1a00bb2ef..b44fce347ed 100644
--- a/spark-client/pom.xml
+++ b/spark-client/pom.xml
@@ -97,6 +97,10 @@
           <groupId>com.fasterxml.jackson.module</groupId>
           <artifactId>jackson-module-scala_${scala.binary.version}</artifactId>
         </exclusion>
+        <exclusion>
+          <groupId>org.bouncycastle</groupId>
+          <artifactId>bcprov-jdk15on</artifactId>
+        </exclusion>
       </exclusions>
    </dependency>
     <dependency>

Reply via email to