Is there a reason I need to set `dependencyResolut...
# gradle
a
Is there a reason I need to set
dependencyResolutionManagement
also in a
includeBuild
project even though I have defined them at the top level already in
settings.gradle.kts
?
v
Included builds are separate builds, hence
includeBuild
. 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 { ... }
.
a
Thanks, that makes sense