Repository: hadoop Updated Branches: refs/heads/trunk d5da9928c -> a4abf0202
HADOOP-15739. ABFS: remove unused maven dependencies and add used undeclared dependencies. Contributed by Da Zhou. Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/a4abf020 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/a4abf020 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/a4abf020 Branch: refs/heads/trunk Commit: a4abf02028ab4d8558cd393cf65228c6aa720827 Parents: d5da992 Author: Steve Loughran <[email protected]> Authored: Tue Sep 25 20:58:32 2018 +0100 Committer: Steve Loughran <[email protected]> Committed: Tue Sep 25 20:58:32 2018 +0100 ---------------------------------------------------------------------- hadoop-tools/hadoop-azure/pom.xml | 40 +++++++++++++++++++++++----------- 1 file changed, 27 insertions(+), 13 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/a4abf020/hadoop-tools/hadoop-azure/pom.xml ---------------------------------------------------------------------- diff --git a/hadoop-tools/hadoop-azure/pom.xml b/hadoop-tools/hadoop-azure/pom.xml index 52f0bae..5de9875 100644 --- a/hadoop-tools/hadoop-azure/pom.xml +++ b/hadoop-tools/hadoop-azure/pom.xml @@ -169,19 +169,6 @@ </dependency> <dependency> - <groupId>com.google.inject</groupId> - <artifactId>guice</artifactId> - <scope>compile</scope> - <!-- we have a dependency on a lower version --> - <exclusions> - <exclusion> - <groupId>com.google.guava</groupId> - <artifactId>guava</artifactId> - </exclusion> - </exclusions> - </dependency> - - <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> @@ -210,6 +197,21 @@ <scope>compile</scope> </dependency> + <!--com.fasterxml.jackson is used by WASB, not ABFS--> + <!--transitive dependency from Azure SDK--> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-core</artifactId> + <scope>provided</scope> + </dependency> + + <!--transitive dependency from hadoop-common--> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + <scope>provided</scope> + </dependency> + <!-- dependencies use for test only --> <dependency> <groupId>junit</groupId> @@ -244,6 +246,18 @@ </dependency> <dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>javax.ws.rs</groupId> + <artifactId>jsr311-api</artifactId> + <scope>test</scope> + </dependency> + + <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <scope>test</scope> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
