Skip to content

Commit

Permalink
Prevent seednode to use older guava version
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarguindzberg committed May 19, 2019
1 parent 4a267ab commit 9e42c5e
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ configure(subprojects) {
slf4jVersion = '1.7.25'
sparkVersion = '2.5.2'
springVersion = '4.3.6.RELEASE'
guavaVersion = '27.0.1-jre'

os = osdetector.os == 'osx' ? 'mac' : osdetector.os == 'windows' ? 'win' : osdetector.os
}
Expand Down Expand Up @@ -139,7 +140,7 @@ configure(project(':assets')) {
exclude(module: 'protobuf-java')
exclude(module: 'bcprov-jdk15on')
}
compile 'com.google.guava:guava:27.0.1-jre'
compile "com.google.guava:guava:$guavaVersion"
compile "org.slf4j:slf4j-api:$slf4jVersion"
compile "commons-codec:commons-codec:$codecVersion"
compile "org.apache.commons:commons-lang3:$langVersion"
Expand Down Expand Up @@ -172,7 +173,7 @@ configure(project(':common')) {
compile "ch.qos.logback:logback-core:$logbackVersion"
compile "ch.qos.logback:logback-classic:$logbackVersion"
compile 'com.google.code.findbugs:jsr305:3.0.2'
compile 'com.google.guava:guava:27.0.1-jre'
compile "com.google.guava:guava:$guavaVersion"
compile('com.google.inject:guice:4.1.0') {
exclude(module: 'guava')
}
Expand Down Expand Up @@ -221,7 +222,9 @@ configure(project(':core')) {
compile project(':assets')
compile project(':p2p')
compile "net.sf.jopt-simple:jopt-simple:$joptVersion"
compile "com.google.guava:guava:$guavaVersion"
compile('network.bisq.btcd-cli4j:btcd-cli4j-core:065d3786') {
exclude(module: 'guava')
exclude(module: 'slf4j-api')
exclude(module: 'httpclient')
exclude(module: 'commons-lang3')
Expand All @@ -230,6 +233,7 @@ configure(project(':core')) {
exclude(module: 'jackson-databind')
}
compile('network.bisq.btcd-cli4j:btcd-cli4j-daemon:065d3786') {
exclude(module: 'guava')
exclude(module: 'slf4j-api')
exclude(module: 'httpclient')
exclude(module: 'commons-lang3')
Expand Down Expand Up @@ -340,7 +344,7 @@ configure(project(':monitor')) {
compile "org.slf4j:slf4j-api:$slf4jVersion"
compile "ch.qos.logback:logback-core:$logbackVersion"
compile "ch.qos.logback:logback-classic:$logbackVersion"
compile 'com.google.guava:guava:27.0.1-jre'
compile "com.google.guava:guava:$guavaVersion"

compileOnly "org.projectlombok:lombok:$lombokVersion"
annotationProcessor "org.projectlombok:lombok:$lombokVersion"
Expand Down

0 comments on commit 9e42c5e

Please sign in to comment.