Workaround class loader errors by loading single guava in the root scope

Possibly related to gradle/gradle#4823 as it only appeared after
using evaluationDependsOn (via The Preprocessor and on jGui).
This commit is contained in:
Jonas Herzig
2019-04-25 09:17:07 +02:00
parent 2d572f6740
commit d5b9e60c4d

View File

@@ -1,3 +1,13 @@
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.google.guava:guava:27.1-jre'
}
}
apply plugin: 'eclipse'
apply plugin: 'idea'