I'm trying to write my first extension and I'm trying to understand if there's a way for a Quarkus extension to modify build-time properties?
(i.e quarkus.otel.propagators
)
The idea is to create an extension which will provide several defaults specific to our environment, i.e among other things it will provide a propagator and any app that imports that extension should automatically enable that propagator if otel is enabled.
I was looking at ConfigurationBuildItem
but this item provides read-only access to the config map.