HDFS-11431. hadoop-hdfs-client JAR does not include ConfiguredFailoverProxyProvider.

Contributed by Steven Rand.

(cherry picked from commit b59dd4c798)
This commit is contained in:
Steve Loughran 2017-03-16 14:08:30 +00:00
parent 6d95866dcf
commit cd976b263b
No known key found for this signature in database
GPG Key ID: 950CC3E032B79CA2
1 changed files with 25 additions and 1 deletions

View File

@ -103,7 +103,7 @@
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-hdfs-client</artifactId>
<artifactId>hadoop-hdfs</artifactId>
<scope>compile</scope>
<exclusions>
<exclusion>
@ -126,6 +126,30 @@
<groupId>javax.servlet</groupId>
<artifactId>javax.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>