Is it possible to share configurations, especially resolved configurations, from other projects i a multi-project build ?
I have a build with about 20 sub-projects which include many dependancies
the build configuration time is very slow -- I watch the gradle output as it re-resolves the same configurations over and over for each project.
( I have allprojects { dependencies { implementation somecommonconfig } } } )
If the configuration is the same among child projects -- is there a way to just put it in the root project and reference it in child projects so it doesn havev
to re-resolve everything ? This could have complications if child projects have different repository sets -- so perhaps that would need to be constrained, or ignored .