Repository: hbase Updated Branches: refs/heads/master 58cd2cf6e -> 83e4bfaf7
HBASE-11412 Minimize a number of hbase-client transitive dependencies (Sergey Beryozkin) Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/83e4bfaf Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/83e4bfaf Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/83e4bfaf Branch: refs/heads/master Commit: 83e4bfaf73e1c7db16835b20c4f996adde30054a Parents: 58cd2cf Author: Enis Soztutar <[email protected]> Authored: Wed Dec 17 21:53:18 2014 -0800 Committer: Enis Soztutar <[email protected]> Committed: Wed Dec 17 21:53:18 2014 -0800 ---------------------------------------------------------------------- hbase-client/pom.xml | 42 ++++++++++++++++++++++++++++++------------ 1 file changed, 30 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/83e4bfaf/hbase-client/pom.xml ---------------------------------------------------------------------- diff --git a/hbase-client/pom.xml b/hbase-client/pom.xml index 5d21ea3..cf616e4 100644 --- a/hbase-client/pom.xml +++ b/hbase-client/pom.xml @@ -108,6 +108,12 @@ <dependency> <groupId>org.apache.hbase</groupId> <artifactId>hbase-common</artifactId> + <exclusions> + <exclusion> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.hbase</groupId> @@ -136,14 +142,6 @@ <artifactId>commons-logging</artifactId> </dependency> <dependency> - <groupId>com.google.guava</groupId> - <artifactId>guava</artifactId> - </dependency> - <dependency> - <groupId>com.google.protobuf</groupId> - <artifactId>protobuf-java</artifactId> - </dependency> - <dependency> <groupId>io.netty</groupId> <artifactId>netty-all</artifactId> </dependency> @@ -220,14 +218,38 @@ <artifactId>hadoop-common</artifactId> <exclusions> <exclusion> + <groupId>com.google.code.findbugs</groupId> + <artifactId>jsr305</artifactId> + </exclusion> + <exclusion> + <groupId>com.github.stephenc.findbugs</groupId> + <artifactId>findbugs-annotations</artifactId> + </exclusion> + <exclusion> + <groupId>net.java.dev.jets3t</groupId> + <artifactId>jets3t</artifactId> + </exclusion> + <exclusion> <groupId>javax.servlet.jsp</groupId> <artifactId>jsp-api</artifactId> </exclusion> <exclusion> + <groupId>org.mortbay.jetty</groupId> + <artifactId>jetty</artifactId> + </exclusion> + <exclusion> <groupId>com.sun.jersey</groupId> <artifactId>jersey-server</artifactId> </exclusion> <exclusion> + <groupId>com.sun.jersey</groupId> + <artifactId>jersey-core</artifactId> + </exclusion> + <exclusion> + <groupId>com.sun.jersey</groupId> + <artifactId>jersey-json</artifactId> + </exclusion> + <exclusion> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> </exclusion> @@ -243,10 +265,6 @@ </dependency> <dependency> <groupId>org.apache.hadoop</groupId> - <artifactId>hadoop-auth</artifactId> - </dependency> - <dependency> - <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-mapreduce-client-core</artifactId> <exclusions> <exclusion>
