PHondogo
12/10/2019, 6:22 PMplugins {
kotlin("multiplatform")
}
how can i set properties like jvmTarget to all submodules?mbonnin
12/10/2019, 7:29 PMbuild.gradle
:
subprojects {
// do things here
}
PHondogo
12/10/2019, 10:11 PMmbonnin
12/10/2019, 10:25 PMafterEvaluate {}
?Joffrey
12/11/2019, 11:05 AMsubprojects
block in the root build.gradle
(use the plugins block with apply false
, and then apply the plugin in the subprojects
block)gildor
12/11/2019, 12:21 PMgildor
12/11/2019, 12:22 PM