Tobi
03/28/2018, 7:23 AMbuildSrc
module to maintain dependencies?Czar
03/28/2018, 7:49 PMbuildSrc
like that.
I have versions
object in buildSrc
and in gradle.settings.kts
I'm reading kotlin version from that object and setting it for the plugin, all other references infer version from the plugin:
plugins {
// note no version
kotlin("jvm")
}
// ...
dependencies {
compile(kotlin("stdlib-jdk8"))
// ...
}
Tobi
03/29/2018, 4:41 PM