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

This commit is contained in:
Vinayakumar B 2015-06-01 17:47:02 +05:30
parent 5cc3fced95
commit 63e3fee5f6
2 changed files with 10 additions and 0 deletions

View File

@ -95,6 +95,10 @@
<groupId>com.jcraft</groupId> <groupId>com.jcraft</groupId>
<artifactId>jsch</artifactId> <artifactId>jsch</artifactId>
</exclusion> </exclusion>
<exclusion>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
</exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
@ -171,6 +175,10 @@
<groupId>io.netty</groupId> <groupId>io.netty</groupId>
<artifactId>netty</artifactId> <artifactId>netty</artifactId>
</exclusion> </exclusion>
<exclusion>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
</exclusion>
</exclusions> </exclusions>
</dependency> </dependency>

View File

@ -480,6 +480,8 @@ Trunk (Unreleased)
HADOOP-12022. fix site -Pdocs -Pdist in hadoop-project-dist; cleanout HADOOP-12022. fix site -Pdocs -Pdist in hadoop-project-dist; cleanout
remaining forrest bits (aw) remaining forrest bits (aw)
HADOOP-9905. remove dependency of zookeeper for hadoop-client (vinayakumarb)
OPTIMIZATIONS OPTIMIZATIONS
HADOOP-7761. Improve the performance of raw comparisons. (todd) HADOOP-7761. Improve the performance of raw comparisons. (todd)