Hi,
I am creating a bundle using <packaging>bundle</packaging>
and
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>${pom.groupId}.${pom.artifactId}</Bundle-SymbolicName>
<Embed-Dependency>*;scope=compile|runtime</Embed-Dependency>
<Embed-Directory>lib</Embed-Directory>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
This puts the libraries in the lib directory of the bundle. Now, I would
like to put the classes in a "classes" directory of the bundle. Is this
possible? Could not find it in the documentation.
Cheers
Erik