This might be simple question but have confused me for sometime.
I\'m developing an OSGi bundle which rely on google guice. Google guice has one main bundle and seve
Use an Import-Package
dependency on the fragment's exported packages.
In fact you should use Import-Package
for all your dependencies, and avoid Require-Bundle
wherever possible.
In addition to adding the required package to Import-Package
, you might need to add Eclipse-ExtensibleAPI: true
to the manifest to prevent unresolved dependency error in PDE.