Simon Kågedal Reimer
09/19/2020, 7:28 PMimplementation "org.jetbrains.kotlin:kotlin-reflect:1.4.10"
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.ephemient
09/19/2020, 10:20 PMkotlin()
helper could make it simply
implementation(kotlin("reflect"))
but I'm not sure if that's available in the gradle dsl or only the kotlin dsl...implementation platform("org.jetbrains.kotlin:kotlin-bom")
to align the versions of all kotlin dependenciesgildor
09/20/2020, 1:06 AMSimon Kågedal Reimer
09/20/2020, 6:42 AM