Skip to content

Commit d25095c

Browse files
committed
bump okhttp dependencies to 2.7.5
1 parent 65ac054 commit d25095c

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

core/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ sourceCompatibility = 1.6
55
dependencies {
66
testCompile 'junit:junit:4.12'
77
testCompile 'org.assertj:assertj-core:1.7.1' // last version supporting JDK 7
8-
testCompile 'com.squareup.okhttp:mockwebserver:2.7.1'
8+
testCompile 'com.squareup.okhttp:mockwebserver:2.7.5'
99
testCompile 'com.google.code.gson:gson:2.5' // for example
1010
testCompile 'org.springframework:spring-context:4.2.5.RELEASE' // for example
1111
}

httpclient/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ dependencies {
77
compile 'org.apache.httpcomponents:httpclient:4.5.1'
88
testCompile 'junit:junit:4.12'
99
testCompile 'org.assertj:assertj-core:1.7.1' // last version supporting JDK 7
10-
testCompile 'com.squareup.okhttp:mockwebserver:2.7.1'
10+
testCompile 'com.squareup.okhttp:mockwebserver:2.7.5'
1111
testCompile project(':feign-core').sourceSets.test.output // for assertions
1212
}

hystrix/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dependencies {
77
compile 'com.netflix.hystrix:hystrix-core:1.4.21'
88
testCompile 'junit:junit:4.12'
99
testCompile 'org.assertj:assertj-core:1.7.1' // last version supporting JDK 7
10-
testCompile 'com.squareup.okhttp:mockwebserver:2.7.1'
10+
testCompile 'com.squareup.okhttp:mockwebserver:2.7.5'
1111
testCompile project(':feign-gson')
1212
testCompile project(':feign-core').sourceSets.test.output // for assertions
1313
}

okhttp/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ sourceCompatibility = 1.6
44

55
dependencies {
66
compile project(':feign-core')
7-
compile 'com.squareup.okhttp:okhttp:2.7.1'
7+
compile 'com.squareup.okhttp:okhttp:2.7.5'
88
testCompile 'junit:junit:4.12'
99
testCompile 'org.assertj:assertj-core:1.7.1' // last version supporting JDK 7
10-
testCompile 'com.squareup.okhttp:mockwebserver:2.7.1'
10+
testCompile 'com.squareup.okhttp:mockwebserver:2.7.5'
1111
testCompile project(':feign-core').sourceSets.test.output // for assertions
1212
}

ribbon/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ dependencies {
77
compile 'com.netflix.ribbon:ribbon-loadbalancer:2.1.1'
88
testCompile 'junit:junit:4.12'
99
testCompile 'org.assertj:assertj-core:1.7.1' // last version supporting JDK 7
10-
testCompile 'com.squareup.okhttp:mockwebserver:2.7.1'
10+
testCompile 'com.squareup.okhttp:mockwebserver:2.7.5'
1111
testCompile project(':feign-core').sourceSets.test.output
1212
}

0 commit comments

Comments
 (0)