Hello everyone, I am using a plugin that transitiv...
# gradle
j
Hello everyone, I am using a plugin that transitively brings in kotlin 1.4.31 while i am trying to use kotlin 1.5. That gives the warning
Copy code
Runtime JAR files in the classpath should have the same version. These files were found in the classpath
and I can't seem to fix it even by adding the explicit versions in my project. How should this be resolved? Thanks!
I also see
kotlin-dsl
is using 1.4 and upgrading gives me another warning
e
embedded Kotlin version in Gradle is 1.4, you're stuck with that for plugins
note that even if you build Kotlin 1.5 explicitly using API version and stdlib 1.4, there are other issues such as https://github.com/gradle/gradle/issues/17052
j
ok thank you very much. Do you know if there is a way to ignore that error?
i would like to keep compiler warnings as errors