Karaf / Maven – Unable to resolve: missing requirement osgi.wiring.package

I believe you have two options here. If you have Import-Package: com.google.gson;version=”[2.3,3)” in your MANIFEST.MF, this means that you want some package to be imported from a deployed bundle, not from an embedded jar. In this case, you should first deploy gson-2.3.1.jar bundle (copy this file to the deploy folder), and then deploy your bundle. … Read more