From 6805d17fc9229ea27156255ff0cabb622e3fda88 Mon Sep 17 00:00:00 2001 From: kimchy Date: Sat, 21 May 2011 02:08:39 +0300 Subject: [PATCH] upgrade to aws sdk 1.2.0 --- .idea/modules/plugin-cloud-aws.iml | 5 +++-- plugins/cloud/aws/build.gradle | 10 ++++++---- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.idea/modules/plugin-cloud-aws.iml b/.idea/modules/plugin-cloud-aws.iml index 476fc02b4e8..68639c8a31b 100644 --- a/.idea/modules/plugin-cloud-aws.iml +++ b/.idea/modules/plugin-cloud-aws.iml @@ -14,10 +14,11 @@ - - + + + diff --git a/plugins/cloud/aws/build.gradle b/plugins/cloud/aws/build.gradle index ecd7496971b..98acb0bf7ee 100644 --- a/plugins/cloud/aws/build.gradle +++ b/plugins/cloud/aws/build.gradle @@ -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') << {