This is an automated email from the ASF dual-hosted git repository. ctubbsii pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/master by this push: new 3c37cc9 Exclude unused transitive dependencies (#1421) 3c37cc9 is described below commit 3c37cc97c12cc3abeb27882fa2f79a64ca32a9f9 Author: César Soto Valero <cesa...@kth.se> AuthorDate: Tue Nov 12 22:39:43 2019 +0100 Exclude unused transitive dependencies (#1421) --- core/pom.xml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/core/pom.xml b/core/pom.xml index ccaf005..041b29f 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -46,6 +46,12 @@ <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> + <exclusions> + <exclusion> + <groupId>com.google.guava</groupId> + <artifactId>listenablefuture</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>com.google.protobuf</groupId> @@ -98,10 +104,22 @@ <dependency> <groupId>org.apache.thrift</groupId> <artifactId>libthrift</artifactId> + <exclusions> + <exclusion> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpcore</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.zookeeper</groupId> <artifactId>zookeeper</artifactId> + <exclusions> + <exclusion> + <groupId>io.netty</groupId> + <artifactId>netty</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId>