This message was deleted.
# community-support
s
This message was deleted.
t
Use a build service that your settings plugin initializes and your project plugin(s) check?
E.g. settings plugin registers the build service with a parameter telling it it's been registered by the settings plugin ; project plugin(s)
registerIfAbsent
with the parameter telling it's been registered by a project plugin, and call a
checkSettingsPluginApplied()
that is a noop if the parameter was "registered by the settings plugin", and also track your warning issued internal state.
m
I guess that could work, yes. I'm a bit worried about use of build services since they have some weird bugs...
It works (but don't forget to call
.get()
after the
registerIfAbsent
or nothing happens :D)
👀 1
Thanks for the idea!