Repository: hadoop Updated Branches: refs/heads/branch-2.8 f9016dfec -> c45f1ec85
HADOOP-13541 explicitly declare the Joda time version S3A depends on. Contributed by Stevel Loughran Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/c45f1ec8 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/c45f1ec8 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/c45f1ec8 Branch: refs/heads/branch-2.8 Commit: c45f1ec858bc3c78a1d7880c04194c32e3cc9087 Parents: f9016df Author: Steve Loughran <[email protected]> Authored: Wed Sep 7 12:19:05 2016 +0100 Committer: Steve Loughran <[email protected]> Committed: Wed Sep 7 12:19:05 2016 +0100 ---------------------------------------------------------------------- hadoop-project/pom.xml | 12 +++++++++--- hadoop-tools/hadoop-aws/pom.xml | 4 ++++ 2 files changed, 13 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/c45f1ec8/hadoop-project/pom.xml ---------------------------------------------------------------------- diff --git a/hadoop-project/pom.xml b/hadoop-project/pom.xml index 7bf26e4..dfb2224 100644 --- a/hadoop-project/pom.xml +++ b/hadoop-project/pom.xml @@ -80,6 +80,7 @@ <findbugs.version>3.0.0</findbugs.version> <tomcat.version>6.0.44</tomcat.version> + <joda-time.version>2.9.4</joda-time.version> <!-- define the Java language version used by the compiler --> <javac.version>1.7</javac.version> @@ -988,12 +989,17 @@ <version>1.46</version> <scope>test</scope> </dependency> - <dependency> + <dependency> <groupId>com.microsoft.azure</groupId> <artifactId>azure-storage</artifactId> <version>2.2.0</version> - </dependency> - + </dependency> + <dependency> + <groupId>joda-time</groupId> + <artifactId>joda-time</artifactId> + <version>${joda-time.version}</version> + </dependency> + <dependency> <groupId>com.nimbusds</groupId> <artifactId>nimbus-jose-jwt</artifactId> http://git-wip-us.apache.org/repos/asf/hadoop/blob/c45f1ec8/hadoop-tools/hadoop-aws/pom.xml ---------------------------------------------------------------------- diff --git a/hadoop-tools/hadoop-aws/pom.xml b/hadoop-tools/hadoop-aws/pom.xml index fc0ef0f..bf06a52 100644 --- a/hadoop-tools/hadoop-aws/pom.xml +++ b/hadoop-tools/hadoop-aws/pom.xml @@ -214,6 +214,10 @@ <scope>compile</scope> </dependency> <dependency> + <groupId>joda-time</groupId> + <artifactId>joda-time</artifactId> + </dependency> + <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-java-sdk-sts</artifactId> <scope>test</scope> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
