Browse Source

Force transitive Guava dep to version 18.0

pull/30/head
Chris Smith 9 years ago
parent
commit
143ed4c8ba
1 changed files with 5 additions and 0 deletions
  1. 5
    0
      build.gradle

+ 5
- 0
build.gradle View File

@@ -33,6 +33,11 @@ dependencies {
33 33
     testCompile group: 'com.google.jimfs', name: 'jimfs', version: '1.0'
34 34
 }
35 35
 
36
+// DMDirc uses 18.0, JimFS has a transient dep on 16.0.1 - force the newer version
37
+configurations.all {
38
+    resolutionStrategy.force('com.google.guava:guava:18.0')
39
+}
40
+
36 41
 publishing {
37 42
     publications {
38 43
         mavenJava(MavenPublication) {

Loading…
Cancel
Save