-
-
Notifications
You must be signed in to change notification settings - Fork 303
Description
Version: Maven plugin biz.aQute.bnd:bnd-maven-plugin
6.4.0
Hello,
https://github.com/google/gson uses the bnd-maven-plugin to generate the OSGi manifest attributes1. Recently in google/gson#2725 it was reported that the "substitution" Import-Package
for com.google.gson.annotations
causes issues when multiple third-party bundles import Gson packages.
In that Gson issue and the linked discussions it was mentioned that the problem might be that Gson's own Import-Package
(generated by bnd) does not define a version range for com.google.gson.annotations
2:
Import-Package: sun.misc;resolution:=optional,com.google.gson.annotations
Do you think as well that this is the cause here, and that the solution is to use ...;version="${range;[==,=+)}"
or similar? But in that case is that something bnd can / should generate on its own?
Disclaimer: I am not very familiar with OSGi, so please let me know if there is any misunderstanding.
Footnotes
-
Maven plugin configuration: https://github.com/google/gson/blob/9615c8d7c895797872d7e601702e690e5ed7a2e8/gson/pom.xml#L125-L157 ↩
-
Can for example be seen in the Gson 2.11.0 JAR, or if you build Gson manually with
mvn package
; the JAR is then under/gson/target/gson-2.11.1-SNAPSHOT.jar
. ↩