You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ranger.apache.org by pr...@apache.org on 2019/05/17 04:30:12 UTC

[ranger] branch master updated: RANGER-2429: Ranger KMS is not starting properly due to missing libraries

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 e97cd52  RANGER-2429: Ranger KMS is not starting properly due to missing libraries
e97cd52 is described below

commit e97cd528213c71f0d6c762e504370b423ba58f9a
Author: Pradeep <pr...@apache.org>
AuthorDate: Wed May 15 17:54:55 2019 +0530

    RANGER-2429: Ranger KMS is not starting properly due to missing libraries
---
 kms/pom.xml | 10 ++++++++++
 pom.xml     |  2 +-
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/kms/pom.xml b/kms/pom.xml
index 856eebd..df46496 100644
--- a/kms/pom.xml
+++ b/kms/pom.xml
@@ -280,6 +280,16 @@
             <groupId>com.webcohesion.enunciate</groupId>
             <artifactId>enunciate-core-annotations</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.apache.zookeeper</groupId>
+            <artifactId>zookeeper</artifactId>
+            <version>${zookeeper.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-codec</groupId>
+            <artifactId>commons-codec</artifactId>
+            <version>${commons.codec.version}</version>
+        </dependency>
     </dependencies>
     <build>
         <pluginManagement>
diff --git a/pom.xml b/pom.xml
index c0a480c..40b053b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -93,7 +93,7 @@
         <codehaus.jackson.version>1.9.13</codehaus.jackson.version>
         <commons.beanutils.version>1.9.3</commons.beanutils.version>
         <commons.cli.version>1.2</commons.cli.version>
-        <commons.codec.version>1.11</commons.codec.version>
+        <commons.codec.version>1.12</commons.codec.version>
         <commons.collections.version>3.2.2</commons.collections.version>
         <commons.compress.version>1.8.1</commons.compress.version>
         <commons.configuration.version>2.1.1</commons.configuration.version>