Hi all
Is it possible to create with maven-bundle-plugin nested bundles, thus a bundle
holding a bunch of other bundles?
I tried to specify the dependencies in my pom.xml and create a bundle with
following config:
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.5</version>
<extensions>true</extensions>
<configuration>
<manifestLocation>META-INF</manifestLocation>
<instructions>
<Embed-Dependency>*;scope=compile|runtime</Embed-Dependency>
<Embed-Transitive>true</Embed-Transitive>
</instructions>
<archive>
<addMavenDescriptor>false</addMavenDescriptor>
</archive>
</configuration>
</plugin>
Unfortunately the resulting MANIFEST.MF never contains the Export-Package
declaration for the included bundle jars.
Thanks,
petra