HADOOP-13541 explicitly declare the Joda time version S3A depends on. Contributed by Stevel Loughran
This commit is contained in:
parent
c0e492e50f
commit
7fdfcd8a6c
|
@ -88,6 +88,7 @@
|
|||
|
||||
<tomcat.version>6.0.44</tomcat.version>
|
||||
<guice.version>4.0</guice.version>
|
||||
<joda-time.version>2.9.4</joda-time.version>
|
||||
|
||||
<!-- define the Java language version used by the compiler -->
|
||||
<javac.version>1.8</javac.version>
|
||||
|
@ -1037,6 +1038,12 @@
|
|||
<scope>test</scope>
|
||||
</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>
|
||||
|
|
|
@ -285,6 +285,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>
|
||||
|
|
Loading…
Reference in New Issue