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

pradeep 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 2f53635  RANGER-2342: Exclude jackson jaxrs library from ranger-admin 
packaging
2f53635 is described below

commit 2f53635eb8a6f88e39e9fd6e948cd7f93d0c4c5a
Author: Pradeep <prad...@apache.org>
AuthorDate: Mon Mar 4 19:12:14 2019 +0530

    RANGER-2342: Exclude jackson jaxrs library from ranger-admin packaging
---
 pom.xml                |  5 +++++
 security-admin/pom.xml | 12 ++++++++++++
 2 files changed, 17 insertions(+)

diff --git a/pom.xml b/pom.xml
index 87bea23..c398069 100644
--- a/pom.xml
+++ b/pom.xml
@@ -832,6 +832,11 @@
                                <artifactId>hbase-client</artifactId>
                                <version>${hbase.version}</version>
                        </dependency>
+                       <dependency>
+                               <groupId>com.fasterxml.jackson.core</groupId>
+                               <artifactId>jackson-databind</artifactId>
+                               
<version>${fasterxml.jackson.databind.version}</version>
+                       </dependency>
                </dependencies>
     </dependencyManagement>
     <build>
diff --git a/security-admin/pom.xml b/security-admin/pom.xml
index c9652cc..2c58760 100644
--- a/security-admin/pom.xml
+++ b/security-admin/pom.xml
@@ -264,6 +264,12 @@
                        <groupId>org.apache.hadoop</groupId>
                        <artifactId>hadoop-mapreduce-client-core</artifactId>
                        <version>${hadoop.version}</version>
+                       <exclusions>
+                               <exclusion>
+                                       
<groupId>com.fasterxml.jackson.jaxrs</groupId>
+                                       
<artifactId>jackson-jaxrs-json-provider</artifactId>
+                               </exclusion>
+                       </exclusions>
                </dependency>
         <dependency>
             <groupId>com.sun.jersey.contribs</groupId>
@@ -498,6 +504,12 @@
                        <groupId>com.webcohesion.enunciate</groupId>
                        <artifactId>enunciate-core-annotations</artifactId>
                </dependency>
+               <dependency>
+                       <groupId>com.fasterxml.jackson.jaxrs</groupId>
+                       <artifactId>jackson-jaxrs-json-provider</artifactId>
+            <version>${fasterxml.jackson.version}</version>
+                       <scope>provided</scope>
+               </dependency>
        </dependencies>
     <build>
         <pluginManagement>

Reply via email to