You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by zj...@apache.org on 2015/06/03 01:48:18 UTC

[46/50] [abbrv] hadoop git commit: HADOOP-9905. remove dependency of zookeeper for hadoop-client (Contributed by Vinayakumar B)

HADOOP-9905. remove dependency of zookeeper for hadoop-client (Contributed by Vinayakumar B)


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/850e4888
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/850e4888
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/850e4888

Branch: refs/heads/YARN-2928
Commit: 850e48887c143c28f3a1682f527ea59cf5c38560
Parents: 732a70f
Author: Vinayakumar B <vi...@apache.org>
Authored: Mon Jun 1 17:47:02 2015 +0530
Committer: Zhijie Shen <zj...@apache.org>
Committed: Tue Jun 2 16:44:22 2015 -0700

----------------------------------------------------------------------
 hadoop-client/pom.xml                           | 8 ++++++++
 hadoop-common-project/hadoop-common/CHANGES.txt | 2 ++
 2 files changed, 10 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hadoop/blob/850e4888/hadoop-client/pom.xml
----------------------------------------------------------------------
diff --git a/hadoop-client/pom.xml b/hadoop-client/pom.xml
index f8b6d97..2324dba 100644
--- a/hadoop-client/pom.xml
+++ b/hadoop-client/pom.xml
@@ -95,6 +95,10 @@
           <groupId>com.jcraft</groupId>
           <artifactId>jsch</artifactId>
         </exclusion>
+        <exclusion>
+          <groupId>org.apache.zookeeper</groupId>
+          <artifactId>zookeeper</artifactId>
+        </exclusion>
       </exclusions>
     </dependency>
 
@@ -171,6 +175,10 @@
           <groupId>io.netty</groupId>
           <artifactId>netty</artifactId>
         </exclusion>
+        <exclusion>
+          <groupId>org.apache.zookeeper</groupId>
+          <artifactId>zookeeper</artifactId>
+        </exclusion>
       </exclusions>
     </dependency>
 

http://git-wip-us.apache.org/repos/asf/hadoop/blob/850e4888/hadoop-common-project/hadoop-common/CHANGES.txt
----------------------------------------------------------------------
diff --git a/hadoop-common-project/hadoop-common/CHANGES.txt b/hadoop-common-project/hadoop-common/CHANGES.txt
index 00075b4..44c2969 100644
--- a/hadoop-common-project/hadoop-common/CHANGES.txt
+++ b/hadoop-common-project/hadoop-common/CHANGES.txt
@@ -480,6 +480,8 @@ Trunk (Unreleased)
     HADOOP-12022. fix site -Pdocs -Pdist in hadoop-project-dist; cleanout
     remaining forrest bits (aw)
 
+    HADOOP-9905. remove dependency of zookeeper for hadoop-client (vinayakumarb)
+
   OPTIMIZATIONS
 
     HADOOP-7761. Improve the performance of raw comparisons. (todd)