Repository: hadoop Updated Branches: refs/heads/branch-2 9f9ccb278 -> 3eaa79c9c refs/heads/branch-2.8 851ba7d9d -> 72fbdf708 refs/heads/branch-2.8.0 b457b9ac7 -> b59dd4c79 refs/heads/trunk 6d95866dc -> cd976b263
HDFS-11431. hadoop-hdfs-client JAR does not include ConfiguredFailoverProxyProvider. Contributed by Steven Rand. Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/b59dd4c7 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/b59dd4c7 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/b59dd4c7 Branch: refs/heads/branch-2.8.0 Commit: b59dd4c79824280616641408b538e90f10eb49f8 Parents: b457b9a Author: Steve Loughran <[email protected]> Authored: Thu Mar 16 14:04:53 2017 +0000 Committer: Steve Loughran <[email protected]> Committed: Thu Mar 16 14:04:53 2017 +0000 ---------------------------------------------------------------------- hadoop-client/pom.xml | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/b59dd4c7/hadoop-client/pom.xml ---------------------------------------------------------------------- diff --git a/hadoop-client/pom.xml b/hadoop-client/pom.xml index 56ee42a..7e28e6a 100644 --- a/hadoop-client/pom.xml +++ b/hadoop-client/pom.xml @@ -100,7 +100,7 @@ <dependency> <groupId>org.apache.hadoop</groupId> - <artifactId>hadoop-hdfs-client</artifactId> + <artifactId>hadoop-hdfs</artifactId> <scope>compile</scope> <exclusions> <exclusion> @@ -123,6 +123,30 @@ <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> </exclusion> + <exclusion> + <groupId>io.netty</groupId> + <artifactId>netty</artifactId> + </exclusion> + <exclusion> + <groupId>io.netty</groupId> + <artifactId>netty-all</artifactId> + </exclusion> + <exclusion> + <groupId>xerces</groupId> + <artifactId>xercesImpl</artifactId> + </exclusion> + <exclusion> + <groupId>commons-daemon</groupId> + <artifactId>commons-daemon</artifactId> + </exclusion> + <exclusion> + <groupId>org.mortbay.jetty</groupId> + <artifactId>jetty-util</artifactId> + </exclusion> + <exclusion> + <groupId>org.fusesource.leveldbjni</groupId> + <artifactId>leveldbjni-all</artifactId> + </exclusion> </exclusions> </dependency> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
