Skip to content

Commit 7c0ddbf

Browse files
author
Adrian Cole
committed
Updates to okhttp 2.7.1
1 parent 6a8359f commit 7c0ddbf

7 files changed

Lines changed: 9 additions & 9 deletions

File tree

benchmark/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<dependency>
3434
<groupId>com.squareup.okhttp</groupId>
3535
<artifactId>mockwebserver</artifactId>
36-
<version>2.7.0</version>
36+
<version>2.7.1</version>
3737
<exclusions>
3838
<exclusion>
3939
<groupId>org.bouncycastle</groupId>

core/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ 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.0'
8+
testCompile 'com.squareup.okhttp:mockwebserver:2.7.1'
99
testCompile 'com.google.code.gson:gson:2.5' // for example
1010
}

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.0'
10+
testCompile 'com.squareup.okhttp:mockwebserver:2.7.1'
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.0'
10+
testCompile 'com.squareup.okhttp:mockwebserver:2.7.1'
1111
testCompile project(':feign-gson')
1212
testCompile project(':feign-core').sourceSets.test.output // for assertions
1313
}

hystrix/src/main/java/feign/hystrix/HystrixInvocationHandler.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@
3333

3434
final class HystrixInvocationHandler implements InvocationHandler {
3535

36-
private final Target target;
36+
private final Target<?> target;
3737
private final Map<Method, MethodHandler> dispatch;
3838

39-
HystrixInvocationHandler(Target target, Map<Method, MethodHandler> dispatch) {
39+
HystrixInvocationHandler(Target<?> target, Map<Method, MethodHandler> dispatch) {
4040
this.target = checkNotNull(target, "target");
4141
this.dispatch = checkNotNull(dispatch, "dispatch");
4242
}

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.0'
7+
compile 'com.squareup.okhttp:okhttp:2.7.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.0'
10+
testCompile 'com.squareup.okhttp:mockwebserver:2.7.1'
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.0'
10+
testCompile 'com.squareup.okhttp:mockwebserver:2.7.1'
1111
testCompile project(':feign-core').sourceSets.test.output
1212
}

0 commit comments

Comments
 (0)