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

rmani pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ranger.git


The following commit(s) were added to refs/heads/master by this push:
     new a617a3e  RANGER-3235:Remove hive-exec dependency from Ranger audit 
frame work
a617a3e is described below

commit a617a3e0fa09c856173921366be6ad0a9cf3dbef
Author: Ramesh Mani <[email protected]>
AuthorDate: Thu Apr 8 00:01:10 2021 -0700

    RANGER-3235:Remove hive-exec dependency from Ranger audit frame work
    
    Signed-off-by: Ramesh Mani <[email protected]>
---
 agents-audit/pom.xml | 15 +++++++++++++--
 pom.xml              |  2 ++
 2 files changed, 15 insertions(+), 2 deletions(-)

diff --git a/agents-audit/pom.xml b/agents-audit/pom.xml
index 06ed81f..0b16e53 100644
--- a/agents-audit/pom.xml
+++ b/agents-audit/pom.xml
@@ -310,8 +310,19 @@
         </dependency>
         <dependency>
             <groupId>org.apache.hive</groupId>
-            <artifactId>hive-exec</artifactId>
-            <version>${hive.version}</version>
+            <artifactId>hive-storage-api</artifactId>
+            <version>${hive.storage-api.version}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>*</groupId>
+                    <artifactId>*</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.orc</groupId>
+            <artifactId>orc-core</artifactId>
+            <version>${orc.version}</version>
             <exclusions>
                 <exclusion>
                     <groupId>*</groupId>
diff --git a/pom.xml b/pom.xml
index b9cbcaa..e508dd1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -123,6 +123,8 @@
         <hamcrest.all.version>1.3</hamcrest.all.version>
         <hbase.version>2.2.6</hbase.version>
         <hive.version>3.1.2</hive.version>
+        <hive.storage-api.version>2.7.2</hive.storage-api.version>
+        <orc.version>1.5.8</orc.version>
         <hbase-shaded-protobuf>3.3.0</hbase-shaded-protobuf>
         <hbase-shaded-netty>3.3.0</hbase-shaded-netty>
         <hbase-shaded-miscellaneous>3.3.0</hbase-shaded-miscellaneous>

Reply via email to