thomasnield
03/06/2019, 9:19 PMtddmonkey
03/06/2019, 9:31 PMplugins {
id "org.jetbrains.kotlin.jvm" version "1.3.20" apply false
}
Then in your child module just apply plugin: 'kotlin'
Nikky
03/07/2019, 11:49 AMplugins [
kotlin("jvm")
}
on the children
its silly, it should realize that it is the same version and just apply itthomasnield
03/07/2019, 3:24 PMtddmonkey
03/07/2019, 3:25 PMtddmonkey
03/07/2019, 4:20 PMplugins {
idea
kotlin("jvm") version "1.3.11"
}
in subproject
apply {
plugin("kotlin")
}
thomasnield
03/08/2019, 1:08 AM