<@UCJ90MC59> thanks for the lead, are there any ex...
# gradle
t
@octylFractal thanks for the lead, are there any examples in the docs?
though this looks slightly diffferent
they apply it in the root project
you can get the maven coords for the plugin from https://plugins.gradle.org/plugin/org.jetbrains.kotlin.jvm
m
for kotlin-dsl, best do in root declare version, in subprojects dont declare versions
root/build.gradle.kts
Copy code
plugins {
 kotlin("jvm") version "1.3.21"
}
root/subproject/build.gradle.kts
Copy code
plugins {
 kotlin("jvm")
}
t
Alright thanks, this was very helpful. I did a minimal example here: https://github.com/thomasnield/kotlin_gradle_dsl_multiproject_examples