I have a regular maven jar project, which has dependencies such as the reflection library and I want to convert it to osgi, what Ive already done.
- created a common interface layer in a different (maven) jar project and added it to the bundle as a dependencies.
- changed the type of the osgi-module-to-be to 'bundle'.
- created an implementation of BundleActivator
- added this plugin the pom:
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.7</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-Activator>my.package.MyServiceActivator</Bundle-Activator>
<Export-Package>
my.package.exp.*
</Export-Package>
<Import-Package>
!org.reflections,???
</Import-Package>
<Embed-Dependency>
slf4j-api;scope=compile,???
</Embed-Dependency>
</instructions>
</configuration>
here is where it gets lost, I need to figure out the "Import-Package" and "Embed-Dependency" and, even more important figure how to deploy it on glassfish as a zip or, maybe, ORB (or Gogo) so that it will deploy with all it's dependencies jars.
any ideas?
G.
BTW: the org.reflections package is not OSGi ready