tim
06/19/2020, 12:57 PMbuild.gradle.kts
projects/api
...
projects/core <-- a git submodule
projects/core/gradle.build.kts // file in question
Normally, I have the parent project specify plugin dependency versions. This works fine for everything except for core. Because Core is a submodule I can clone it and work on it in isolation, where in that case I need to specify plugin versions: kotlin("jvm") version("...") apply(true)
but when core is consumed as a submodule and the parent project specifies the version i get a build error from gradle: Plugin request for plugin already on the classpath must not include a version
Any suggestions on how to approach/workaround this?no
06/20/2020, 7:06 AMtim
06/20/2020, 6:14 PMPlugin [id: 'org.jetbrains.kotlin.jvm'] was not found in any of the following sources:
gildor
06/21/2020, 3:22 PMtim
06/21/2020, 5:09 PM