ソースを参照

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

Vinayakumar B 10 年 前
コミット
63e3fee5f6
2 ファイル変更10 行追加0 行削除
  1. 8 0
      hadoop-client/pom.xml
  2. 2 0
      hadoop-common-project/hadoop-common/CHANGES.txt

+ 8 - 0
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>
 

+ 2 - 0
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)