This content has been marked as final.
Show 2 replies
-
1. Re: confusion about dependency declaration and OSGi import - export wire up
ffang Mar 5, 2013 10:01 PM (in response to wl880504)Hi,
During runtime the OSGi container never interact with bundle's pom.xml, it only check the OSGi metadata header of each bundle(the META-INF/MANIFEST.MF), so as long as any bundle can export packages that bundle bar needs, it get wire up.
The maven-bundle-plugin you used during build time(mvn install) is used to generate the OSGi metadata header in META-INF/MANIFEST.MF, it's not runtime thing.
Freeman
-
2. Re: confusion about dependency declaration and OSGi import - export wire up
wl880504 Mar 5, 2013 10:23 PM (in response to ffang)Thanks for refreshing my understanding.