Skip to content

Commit

Permalink
Merge pull request #526 from alvasw/json_rpc_use_bom_for_okhttp
Browse files Browse the repository at this point in the history
JSON-RPC: Specify OkHttp lib version using BOM
  • Loading branch information
alvasw authored Oct 28, 2022
2 parents 0fa45c4 + 83ea9b1 commit 8f6e7fd
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions wallets/json-rpc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ plugins {
}

dependencies {
api 'com.squareup.okhttp3:okhttp:4.10.0'
api platform("com.squareup.okhttp3:okhttp-bom:4.10.0")
implementation platform("com.squareup.okhttp3:okhttp-bom:4.10.0")

api 'com.squareup.okhttp3:okhttp'
api 'com.squareup.moshi:moshi:1.14.0'

testImplementation 'com.squareup.okhttp3:mockwebserver:4.10.0'
}
testImplementation libs.assertj.core
testImplementation 'com.squareup.okhttp3:mockwebserver'
}

0 comments on commit 8f6e7fd

Please sign in to comment.