Hi all,
In the context of
https://bugs.eclipse.org/bugs/show_bug.cgi?id=577248 , we need a way for bundles (that were preliminary approved by user) to be capable of contributing some PGP public keys as being "trusted by default". I'm wondering what would be the best way to contribute such extensibility in p2. p2 doesn't define extension points, but uses OSGi Services; but here we only want to contribute a value (that could be the armoured keys, or a path to a resource in the bundle containing such keys...). As far as I am aware -ie not much-, I see 3 possible approaches:
1. Define a service interface and let bundles contribute extensions to this interface, eg via OSGI-INF/component.xml
* Requires to create 1 service/API interace
* Would consuming the service from a bundle automatically trigger bundle activation? That would be undesired.
2. Add support for a custom MANIFEST header, something like `Eclipse-P2-PGP-TrustedKey`.
* Seems a bit alien, would require some support in tools
Are there other solutions you think could fit? What should be preferred?