I have a multi-project build, where many of the pr...
# gradle
c
I have a multi-project build, where many of the projects bundle themselves up using the
java-library-distribution
plugin. I have some shared files in one project ("core") that I want to get bundled with all those other projects. I know I can include a
distributions { main { contents { ... } } }
block in each project's build.gradle.kts, but I'd like to avoid that and centralise it instead. What's the best approach?