HADOOP-13692. hadoop-aws should declare explicit dependency on Jackson 2 jars to prevent classpath conflicts. Contributed by Chris Nauroth.
(cherry picked from commit 69620f955997250d1b543d86d4907ee50218152a) (cherry picked from commit 2de2d0df1d4e7f5f965d787d53a44db5acefcde9) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/c6e69f6f Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/c6e69f6f Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/c6e69f6f Branch: refs/heads/branch-2.8 Commit: c6e69f6fb566b187ff3523cecba1f06c2d9101cd Parents: d55b7bf Author: Chris Nauroth <[email protected]> Authored: Fri Oct 7 11:41:19 2016 -0700 Committer: Chris Nauroth <[email protected]> Committed: Fri Oct 7 11:41:40 2016 -0700 ---------------------------------------------------------------------- hadoop-tools/hadoop-aws/pom.xml | 12 ++++++++++++ 1 file changed, 12 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/c6e69f6f/hadoop-tools/hadoop-aws/pom.xml ---------------------------------------------------------------------- diff --git a/hadoop-tools/hadoop-aws/pom.xml b/hadoop-tools/hadoop-aws/pom.xml index bf06a52..ebf32be 100644 --- a/hadoop-tools/hadoop-aws/pom.xml +++ b/hadoop-tools/hadoop-aws/pom.xml @@ -214,6 +214,18 @@ <scope>compile</scope> </dependency> <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-core</artifactId> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-annotations</artifactId> + </dependency> + <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> </dependency> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
