upgrade to aws sdk 1.1.7

This commit is contained in:
kimchy 2011-02-25 21:33:50 +02:00
parent 608c5a838d
commit 24e95ea7e4
2 changed files with 4 additions and 6 deletions

View File

@ -17,12 +17,10 @@
<root url="jar://$GRADLE_REPOSITORY$/commons-httpclient/commons-httpclient/jars/commons-httpclient-3.0.1.jar!/" />
<root url="jar://$GRADLE_REPOSITORY$/commons-codec/commons-codec/jars/commons-codec-1.3.jar!/" />
<root url="jar://$GRADLE_REPOSITORY$/commons-logging/commons-logging/jars/commons-logging-1.1.1.jar!/" />
<root url="jar://$GRADLE_REPOSITORY$/com.amazonaws/aws-java-sdk/jars/aws-java-sdk-1.1.1.jar!/" />
<root url="jar://$GRADLE_REPOSITORY$/com.amazonaws/aws-java-sdk/jars/aws-java-sdk-1.1.7.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES>
<root url="jar://$USER_HOME$/opt/aws-java-sdk/1.1.1/lib/aws-java-sdk-1.1.1-sources.jar!/" />
</SOURCES>
<SOURCES />
</library>
</orderEntry>
<orderEntry type="module" module-name="test-testng" scope="TEST" />

View File

@ -31,12 +31,12 @@ configurations {
dependencies {
compile project(':elasticsearch')
compile("com.amazonaws:aws-java-sdk:1.1.1") { transitive = false }
compile("com.amazonaws:aws-java-sdk:1.1.7") { transitive = false }
runtime("commons-logging:commons-logging:1.1.1") { transitive = false }
runtime("commons-codec:commons-codec:1.3") { transitive = false }
runtime("commons-httpclient:commons-httpclient:3.0.1") { transitive = false }
distLib("com.amazonaws:aws-java-sdk:1.1.1") { transitive = false }
distLib("com.amazonaws:aws-java-sdk:1.1.7") { transitive = false }
distLib("commons-codec:commons-codec:1.3") { transitive = false }
distLib("commons-logging:commons-logging:1.1.1") { transitive = false }
distLib("commons-httpclient:commons-httpclient:3.0.1") { transitive = false }