When adding `kotlin-script-util` dependency I get ...
# announcements
c
When adding
kotlin-script-util
dependency I get warning that I have bundled kotlin runtime and All my guava usages go haywire not finding any methods. The warning:
Copy code
w: Some JAR files in the classpath have the Kotlin Runtime library bundled into them. This may cause difficult to debug problems if there's a different version of the Kotlin Runtime library in the classpath. Consider removing these libraries from the classpath or use '-Xskip-runtime-version-check' to suppress this warning
w: /home/czar/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-compiler/1.1.4-3/6d02332b2ea1642c6529277f8404882a9f5ed835/kotlin-compiler-1.1.4-3.jar: Library has Kotlin runtime bundled into it
I tried to do this:```compile "org.jetbrains.kotlinkotlin script util$kotlinVersion", { exclude module: 'kotlin-runtime' exclude module: 'guava' }``` But no dice, same problems persist. Suggestions?