HADOOP-13541 explicitly declare the Joda time version S3A depends on. Contributed by Stevel Loughran

This commit is contained in:
Steve Loughran 2016-09-07 12:19:05 +01:00
parent f9016dfec3
commit c45f1ec858
2 changed files with 13 additions and 3 deletions

View File

@ -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>

View File

@ -213,6 +213,10 @@
<artifactId>aws-java-sdk-s3</artifactId>
<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>