Prevent seednode to use older guava version

This commit is contained in:
Oscar Guindzberg 2019-05-19 20:57:56 -03:00
parent 5a00770377
commit 053b22f16f
No known key found for this signature in database
GPG Key ID: 209796BF2E1D4F75

View File

@ -308,7 +308,9 @@ configure(project(':core')) {
implementation("org.apache.httpcomponents:httpclient:$httpclientVersion") {
exclude(module: 'commons-codec')
}
compile "com.google.guava:guava:$guavaVersion"
compile("network.bisq.btcd-cli4j:btcd-cli4j-core:$btcdCli4jVersion") {
exclude(module: 'guava')
exclude(module: 'slf4j-api')
exclude(module: 'httpclient')
exclude(module: 'commons-lang3')
@ -317,6 +319,7 @@ configure(project(':core')) {
exclude(module: 'jackson-databind')
}
compile("network.bisq.btcd-cli4j:btcd-cli4j-daemon:$btcdCli4jVersion") {
exclude(module: 'guava')
exclude(module: 'slf4j-api')
exclude(module: 'httpclient')
exclude(module: 'commons-lang3')