Skip to content

Commit

Permalink
exclude okio from okhttp
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmyjames committed Sep 20, 2023
1 parent cb5af9c commit 6dc84b1
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,13 @@ ext {
}

dependencies {
implementation "com.squareup.okhttp3:okhttp:${okhttpVersion}"
implementation "com.squareup.okhttp3:logging-interceptor:${okhttpVersion}"
// TODO remove direct dependency when OkHttp 4.12.0 is released
implementation "com.squareup.okio:okio:3.4.0"
implementation ("com.squareup.okhttp3:okhttp:${okhttpVersion}") {
exclude group: 'com.squareup.okhttp3', module: 'okio'
}
implementation "com.squareup.okio:okio:3.5.0"

implementation "com.squareup.okhttp3:logging-interceptor:${okhttpVersion}"
implementation "com.fasterxml.jackson.core:jackson-databind:2.14.2"
implementation "com.auth0:java-jwt:4.4.0"
implementation "net.jodah:failsafe:2.4.4"
Expand Down

0 comments on commit 6dc84b1

Please sign in to comment.