x80486
04/24/2020, 6:20 PMsrc
, etc. ...so I'm not expecting that Gradle executes anything on it, but on the modules within that umbrella project...any clues? In Maven that's correctly executed, so I think there should be an equivalent in Gradle...thanks in advance!araqnid
04/24/2020, 7:47 PMapply false
after declaring the plugins (such as kotlin) in the root project to skip actually applying them. It isn’t automatically done based on whether there appears to be any source therearaqnid
04/24/2020, 7:48 PMapply false
, you can just take those out of the rootaraqnid
04/24/2020, 7:49 PMplugins { eclipse }
)x80486
04/24/2020, 7:51 PMapply false
to the Kotlin plugin (but just that one): id("org.jetbrains.kotlin.jvm").version("1.3.72").apply(false)
...still, the same outputaraqnid
04/24/2020, 7:52 PMx80486
04/24/2020, 7:53 PMid(string)<.version(version)>
, but I get your point that I loose the type safety on it and suchx80486
04/24/2020, 7:54 PMbase
plugin was a must for multi-projects 😱 ...clearly I'm not keen in Gradlearaqnid
04/24/2020, 7:55 PMaraqnid
04/24/2020, 7:56 PMapplication
plugin is for building distributions, you don’t want that in your root project eitherx80486
04/24/2020, 8:00 PMid("org.gradle.base")
was the one bringing those tasks to the "root" project...now it is in the way I intended to be...thank you so much, @araqnid!