As I upgraded a project to use Kotlin 1.4.10 instead of 1.3.60, I got errors because of a version mismatch (stemming from a library that used 1.3.60). I had to solve it by adding this dependency:
I would love for the version string here to not contain another hardcoded "1.4.10", but to use whatever the plugin version is at. Is there anyway to do this? We use Groovy Gradle.
e
ephemient
09/19/2020, 10:20 PM
the
kotlin()
helper could make it simply
Copy code
implementation(kotlin("reflect"))
but I'm not sure if that's available in the gradle dsl or only the kotlin dsl...