It'd be great to build the JARs so their MANIFESTs are OSGi-enhanced.
In case of building with Maven it's done by adding a build plugin:
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
</plugin>
and by specifying the packaging:
<packaging>bundle</packaging>
is there a specific library you are interested in (sqlbuilder, rmiio)?
Sorry I wasn't clear about this. Currently I'm using sqlbuilder and common-util.
Fixed in:
Last edit: James Ahlborn 2016-07-02
Great, thanks a lot, that was a quick reaction.