upgrade to aws sdk 1.2.0
This commit is contained in:
parent
9a536b2c2b
commit
6805d17fc9
|
@ -14,10 +14,11 @@
|
|||
<orderEntry type="module-library">
|
||||
<library name="aws-java-sdk">
|
||||
<CLASSES>
|
||||
<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.9.jar!/" />
|
||||
<root url="jar://$GRADLE_REPOSITORY$/com.amazonaws/aws-java-sdk/jars/aws-java-sdk-1.2.0.jar!/" />
|
||||
<root url="jar://$GRADLE_REPOSITORY$/org.apache.httpcomponents/httpcore/jars/httpcore-4.1.jar!/" />
|
||||
<root url="jar://$GRADLE_REPOSITORY$/org.apache.httpcomponents/httpclient/jars/httpclient-4.1.1.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
|
|
|
@ -31,15 +31,17 @@ configurations {
|
|||
|
||||
dependencies {
|
||||
compile project(':elasticsearch')
|
||||
compile("com.amazonaws:aws-java-sdk:1.1.9") { transitive = false }
|
||||
compile("com.amazonaws:aws-java-sdk:1.2.0") { 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 }
|
||||
runtime("org.apache.httpcomponents:httpclient:4.1.1") { transitive = false }
|
||||
runtime("org.apache.httpcomponents:httpcore:4.1") { transitive = false }
|
||||
|
||||
distLib("com.amazonaws:aws-java-sdk:1.1.9") { transitive = false }
|
||||
distLib("com.amazonaws:aws-java-sdk:1.2.0") { 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 }
|
||||
distLib("org.apache.httpcomponents:httpclient:4.1.1") { transitive = false }
|
||||
distLib("org.apache.httpcomponents:httpcore:4.1") { transitive = false }
|
||||
}
|
||||
|
||||
task explodedDist(dependsOn: [jar], description: 'Builds the plugin zip file') << {
|
||||
|
|
Loading…
Reference in New Issue