Skip to content

Commit

Permalink
Fix OkHttp dependency version (#325)
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmyjames committed Dec 2, 2020
1 parent 19b617f commit b20501b
Showing 1 changed file with 16 additions and 11 deletions.
27 changes: 16 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,17 +61,22 @@ test {
}
}

ext {
okhttpVersion = '4.9.0'
hamcrestVersion = '1.3'
}

dependencies {
implementation 'com.squareup.okhttp3:okhttp:4.9.0'
implementation 'com.squareup.okhttp3:logging-interceptor:3.14.9'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.11.3'
implementation 'commons-codec:commons-codec:1.15'
implementation 'com.auth0:java-jwt:3.11.0'
implementation "com.squareup.okhttp3:okhttp:${okhttpVersion}"
implementation "com.squareup.okhttp3:logging-interceptor:${okhttpVersion}"
implementation "com.fasterxml.jackson.core:jackson-databind:2.11.3"
implementation "commons-codec:commons-codec:1.15"
implementation "com.auth0:java-jwt:3.11.0"

testImplementation 'org.bouncycastle:bcprov-jdk15on:1.65'
testImplementation 'org.mockito:mockito-core:2.28.2'
testImplementation 'com.squareup.okhttp3:mockwebserver:4.9.0'
testImplementation 'org.hamcrest:hamcrest-core:1.3'
testImplementation 'org.hamcrest:hamcrest-library:1.3'
testImplementation 'junit:junit:4.13.1'
testImplementation "org.bouncycastle:bcprov-jdk15on:1.65"
testImplementation "org.mockito:mockito-core:2.28.2"
testImplementation "com.squareup.okhttp3:mockwebserver:${okhttpVersion}"
testImplementation "org.hamcrest:hamcrest-core:${hamcrestVersion}"
testImplementation "org.hamcrest:hamcrest-library:${hamcrestVersion}"
testImplementation "junit:junit:4.13.1"
}

0 comments on commit b20501b

Please sign in to comment.