You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ranger.apache.org by ma...@apache.org on 2016/05/11 22:09:26 UTC

incubator-ranger git commit: RANGER-976: Add missing libraries to tagsync

Repository: incubator-ranger
Updated Branches:
  refs/heads/master 2b0281390 -> 7d8baf866


RANGER-976: Add missing libraries to tagsync

Signed-off-by: Madhan Neethiraj <ma...@apache.org>


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

Branch: refs/heads/master
Commit: 7d8baf866b0cd8ffe9cac9be0fbd4b58bb0174bf
Parents: 2b02813
Author: Abhay Kulkarni <ak...@hortonworks.com>
Authored: Wed May 11 14:25:23 2016 -0700
Committer: Madhan Neethiraj <ma...@apache.org>
Committed: Wed May 11 14:51:48 2016 -0700

----------------------------------------------------------------------
 src/main/assembly/tagsync.xml | 7 +++++++
 tagsync/pom.xml               | 5 +++++
 2 files changed, 12 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/7d8baf86/src/main/assembly/tagsync.xml
----------------------------------------------------------------------
diff --git a/src/main/assembly/tagsync.xml b/src/main/assembly/tagsync.xml
index e8b7276..fbcca8f 100644
--- a/src/main/assembly/tagsync.xml
+++ b/src/main/assembly/tagsync.xml
@@ -34,12 +34,14 @@
    			<dependencySet>
      			<outputDirectory>/lib</outputDirectory>
 				<includes>
+					<include>com.101tec:zkclient</include>
 					<include>com.google.code.gson:gson:jar:${gson.version}</include>
 					<include>com.google.guava:guava:jar:${google.guava.version}</include>
 					<include>com.google.inject:guice:jar:${guice.version}</include>
 					<include>com.google.inject.extensions:guice-multibindings:jar:${guice.version}</include>
 					<include>com.sun.jersey:jersey-bundle:jar:${jersey-bundle.version}</include>
 					<include>com.thoughtworks.paranamer:paranamer:jar:${paranamer.version}</include>
+					<include>com.yammer.metrics:metrics-core</include>
 					<include>org.apache.atlas:atlas-notification:jar:${atlas.version}</include>
 					<include>org.apache.atlas:atlas-typesystem:jar:${atlas.version}</include>
 					<include>org.apache.atlas:atlas-client:jar:${atlas.version}</include>
@@ -51,6 +53,11 @@
 					<include>org.apache.ranger:credentialbuilder</include>
 					<include>org.apache.ranger:ranger-plugins-common</include>
 					<include>org.apache.ranger:ranger-util</include>
+					<include>org.apache.zookeeper:zookeeper:jar:${zookeeper.version}</include>
+					<include>org.codehaus.jackson:jackson-core-asl</include>
+					<include>org.codehaus.jackson:jackson-jaxrs</include>
+					<include>org.codehaus.jackson:jackson-mapper-asl</include>
+					<include>org.codehaus.jackson:jackson-xc</include>
 					<include>org.codehaus.jettison:jettison:jar:${jettison.version}</include>
 					<include>org.json4s:json4s-native_2.10:jar:${json.version}</include>
 					<include>org.json4s:json4s-core_2.10:jar:${json.version}</include>

http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/7d8baf86/tagsync/pom.xml
----------------------------------------------------------------------
diff --git a/tagsync/pom.xml b/tagsync/pom.xml
index 33b8513..c61013c 100644
--- a/tagsync/pom.xml
+++ b/tagsync/pom.xml
@@ -135,5 +135,10 @@
             <artifactId>kafka-clients</artifactId>
             <version>${kafka.version}</version>
         </dependency>
+        <dependency>
+            <groupId>org.apache.zookeeper</groupId>
+            <artifactId>zookeeper</artifactId>
+            <version>${zookeeper.version}</version>
+        </dependency>
     </dependencies>
 </project>