We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b33fa22 commit 82d9699Copy full SHA for 82d9699
1 file changed
build.gradle
@@ -63,12 +63,17 @@ test {
63
}
64
65
ext {
66
- okhttpVersion = '4.10.0'
+ okhttpVersion = '4.11.0'
67
hamcrestVersion = '2.2'
68
69
70
dependencies {
71
- implementation "com.squareup.okhttp3:okhttp:${okhttpVersion}"
+ // TODO remove direct dependency when OkHttp 4.12.0 is released
72
+ implementation ("com.squareup.okhttp3:okhttp:${okhttpVersion}") {
73
+ exclude group: 'com.squareup.okhttp3', module: 'okio'
74
+ }
75
+ implementation "com.squareup.okio:okio:3.5.0"
76
+
77
implementation "com.squareup.okhttp3:logging-interceptor:${okhttpVersion}"
78
implementation "com.fasterxml.jackson.core:jackson-databind:2.13.4.2"
79
implementation "com.auth0:java-jwt:3.19.4"
0 commit comments