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 vi...@apache.org on 2015/06/01 14:17:18 UTC

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

Repository: hadoop
Updated Branches:
  refs/heads/trunk 5cc3fced9 -> 63e3fee5f


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/63e3fee5
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/63e3fee5
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/63e3fee5

Branch: refs/heads/trunk
Commit: 63e3fee5f6c2c50932e474993ad6c663f47c222c
Parents: 5cc3fce
Author: Vinayakumar B <vi...@apache.org>
Authored: Mon Jun 1 17:47:02 2015 +0530
Committer: Vinayakumar B <vi...@apache.org>
Committed: Mon Jun 1 17:47:02 2015 +0530

----------------------------------------------------------------------
 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/63e3fee5/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/63e3fee5/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)