From d25095c50c30fda1ce94a814b30779b2ebefb455 Mon Sep 17 00:00:00 2001 From: Javier Campanini Date: Mon, 14 Mar 2016 10:43:48 -0400 Subject: [PATCH] bump okhttp dependencies to 2.7.5 --- core/build.gradle | 2 +- httpclient/build.gradle | 2 +- hystrix/build.gradle | 2 +- okhttp/build.gradle | 4 ++-- ribbon/build.gradle | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/core/build.gradle b/core/build.gradle index 29aa3b15..412cd886 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -5,7 +5,7 @@ sourceCompatibility = 1.6 dependencies { testCompile 'junit:junit:4.12' testCompile 'org.assertj:assertj-core:1.7.1' // last version supporting JDK 7 - testCompile 'com.squareup.okhttp:mockwebserver:2.7.1' + testCompile 'com.squareup.okhttp:mockwebserver:2.7.5' testCompile 'com.google.code.gson:gson:2.5' // for example testCompile 'org.springframework:spring-context:4.2.5.RELEASE' // for example } diff --git a/httpclient/build.gradle b/httpclient/build.gradle index 35e0acbb..6f9ac541 100644 --- a/httpclient/build.gradle +++ b/httpclient/build.gradle @@ -7,6 +7,6 @@ dependencies { compile 'org.apache.httpcomponents:httpclient:4.5.1' testCompile 'junit:junit:4.12' testCompile 'org.assertj:assertj-core:1.7.1' // last version supporting JDK 7 - testCompile 'com.squareup.okhttp:mockwebserver:2.7.1' + testCompile 'com.squareup.okhttp:mockwebserver:2.7.5' testCompile project(':feign-core').sourceSets.test.output // for assertions } diff --git a/hystrix/build.gradle b/hystrix/build.gradle index 3044049e..f51930a6 100644 --- a/hystrix/build.gradle +++ b/hystrix/build.gradle @@ -7,7 +7,7 @@ dependencies { compile 'com.netflix.hystrix:hystrix-core:1.4.21' testCompile 'junit:junit:4.12' testCompile 'org.assertj:assertj-core:1.7.1' // last version supporting JDK 7 - testCompile 'com.squareup.okhttp:mockwebserver:2.7.1' + testCompile 'com.squareup.okhttp:mockwebserver:2.7.5' testCompile project(':feign-gson') testCompile project(':feign-core').sourceSets.test.output // for assertions } diff --git a/okhttp/build.gradle b/okhttp/build.gradle index 2ea52dfa..1d962a58 100644 --- a/okhttp/build.gradle +++ b/okhttp/build.gradle @@ -4,9 +4,9 @@ sourceCompatibility = 1.6 dependencies { compile project(':feign-core') - compile 'com.squareup.okhttp:okhttp:2.7.1' + compile 'com.squareup.okhttp:okhttp:2.7.5' testCompile 'junit:junit:4.12' testCompile 'org.assertj:assertj-core:1.7.1' // last version supporting JDK 7 - testCompile 'com.squareup.okhttp:mockwebserver:2.7.1' + testCompile 'com.squareup.okhttp:mockwebserver:2.7.5' testCompile project(':feign-core').sourceSets.test.output // for assertions } diff --git a/ribbon/build.gradle b/ribbon/build.gradle index 438d14f0..5175fc3f 100644 --- a/ribbon/build.gradle +++ b/ribbon/build.gradle @@ -7,6 +7,6 @@ dependencies { compile 'com.netflix.ribbon:ribbon-loadbalancer:2.1.1' testCompile 'junit:junit:4.12' testCompile 'org.assertj:assertj-core:1.7.1' // last version supporting JDK 7 - testCompile 'com.squareup.okhttp:mockwebserver:2.7.1' + testCompile 'com.squareup.okhttp:mockwebserver:2.7.5' testCompile project(':feign-core').sourceSets.test.output }