You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ranger.apache.org by co...@apache.org on 2017/02/14 11:38:11 UTC

ranger git commit: fix jackson version number

Repository: ranger
Updated Branches:
  refs/heads/master bb680265b -> 3802c841a


fix jackson version number

Change-Id: Ifff8c26eb414a9db9fe2d6df974fdb0d60fc8072

Signed-off-by: Colm O hEigeartaigh <co...@apache.org>


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

Branch: refs/heads/master
Commit: 3802c841a0fb40f59689523c077269cf4638b3a9
Parents: bb68026
Author: Zsombor Gegesy <zg...@hortonworks.com>
Authored: Mon Feb 13 16:15:41 2017 +0100
Committer: Colm O hEigeartaigh <co...@apache.org>
Committed: Tue Feb 14 10:32:47 2017 +0000

----------------------------------------------------------------------
 kms/pom.xml            | 8 ++++----
 pom.xml                | 1 -
 security-admin/pom.xml | 6 ++++++
 3 files changed, 10 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ranger/blob/3802c841/kms/pom.xml
----------------------------------------------------------------------
diff --git a/kms/pom.xml b/kms/pom.xml
index 13c0b03..b7609f4 100644
--- a/kms/pom.xml
+++ b/kms/pom.xml
@@ -316,22 +316,22 @@
         <dependency>
             <groupId>org.codehaus.jackson</groupId>
             <artifactId>jackson-core-asl</artifactId>
-            <version>${jackson.version}</version>
+            <version>${codehaus.jackson.version}</version>
         </dependency>
         <dependency>
             <groupId>org.codehaus.jackson</groupId>
             <artifactId>jackson-jaxrs</artifactId>
-            <version>${jackson.version}</version>
+            <version>${codehaus.jackson.version}</version>
         </dependency>
         <dependency>
             <groupId>org.codehaus.jackson</groupId>
             <artifactId>jackson-mapper-asl</artifactId>
-            <version>${jackson.version}</version>
+            <version>${codehaus.jackson.version}</version>
         </dependency>
         <dependency>
             <groupId>org.codehaus.jackson</groupId>
             <artifactId>jackson-xc</artifactId>
-            <version>${jackson.version}</version>
+            <version>${codehaus.jackson.version}</version>
         </dependency>
         <dependency>
             <groupId>javax.xml.bind</groupId>

http://git-wip-us.apache.org/repos/asf/ranger/blob/3802c841/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 3c9836a..4f83391 100644
--- a/pom.xml
+++ b/pom.xml
@@ -168,7 +168,6 @@
 		<httpcomponents.httpclient.version>4.5.3</httpcomponents.httpclient.version>
 		<httpcomponents.httpcore.version>4.4.6</httpcomponents.httpcore.version>
 		<httpcomponents.httpmime.version>4.5.3</httpcomponents.httpmime.version>
-        <jackson.version>1.9.13</jackson.version>
         <javassist.version>3.12.1.GA</javassist.version>
         <javax.persistence.version>2.1.0</javax.persistence.version>
         <javax.servlet.version>3.1.0</javax.servlet.version>

http://git-wip-us.apache.org/repos/asf/ranger/blob/3802c841/security-admin/pom.xml
----------------------------------------------------------------------
diff --git a/security-admin/pom.xml b/security-admin/pom.xml
index 5a63cb9..bdc5982 100644
--- a/security-admin/pom.xml
+++ b/security-admin/pom.xml
@@ -338,6 +338,12 @@
             <version>${codehaus.jackson.version}</version>
         </dependency>
         <dependency>
+            <groupId>org.codehaus.jackson</groupId>
+            <artifactId>jackson-xc</artifactId>
+            <version>${codehaus.jackson.version}</version>
+            <scope>runtime</scope>
+        </dependency>
+        <dependency>
             <groupId>org.apache.ranger</groupId>
             <artifactId>ranger-util</artifactId>
             <version>${project.version}</version>