Limit okhttp latest deps test to 3.x.x

This commit is contained in:
Nikolay Martynov 2019-05-09 10:17:35 -04:00
parent c0bb6f4a36
commit 2984cc506e
1 changed files with 2 additions and 1 deletions

View File

@ -32,5 +32,6 @@ dependencies {
}
testCompile group: 'com.squareup.okhttp3', name: 'okhttp', version: '3.0.0'
latestDepTestCompile group: 'com.squareup.okhttp3', name: 'okhttp', version: '[3.11.0,)'
// 4.x.x-alpha has been released and it looks like there are lots of incompatible changes
latestDepTestCompile group: 'com.squareup.okhttp3', name: 'okhttp', version: '[3.11.0, 4.0.0*)'
}