Arjan van Wieringen
02/03/2023, 2:24 PMdependencyResolutionManagement also in a includeBuild project even though I have defined them at the top level already in settings.gradle.kts?Vampire
02/03/2023, 2:29 PMincludeBuild. Almost nothing is "pushed down" to the included build afair. But you could write a settings plugin that contains the common logic and apply that in both projects. That would then be an additional included build that you include within pluginManagement { ... }.Arjan van Wieringen
02/03/2023, 2:46 PM