This message was deleted.
# configuration-cache
s
This message was deleted.
e
Is ditching the idea of configuring things in the root build.gradle and switching to gradle properties instead the way to go here?
p
Hi Eric, We're working on designing replacements for
allprojects {}
and such for central configuration that will work with project isolation but nothing ready as of Today. In the current state of project isolation, using Gradle properties would work.
t
In this specific case, maybe using a settings plugin (configuring the extension in settings.gradle rather than the root build.gradle) would work (and possibly using a build service to share that value across projects) ?
p
Using a build service to share the state should also work yes
It could be configured from settings or from the root project. The root project is always configured first. Moving the configuration to settings would make more sense to me though as it looks like what you're doing Eric is a global setting for the whole build 👍
e
Great ideas, thank you both!
Update: switched over to a settings plugin + build service and the result is perfect. Thanks again!
👍 1