I'm trying to build standalone OSGI application with Maven. There are several sub-modules containing "bundles" and one "distribution" module that produces a directory (zip) with my bundles, framework's bundles and required configuration files. The latter one declares all sub-modules and OSGI implementation as dependencies (distinct profiles for Felix and Equinox) and uses assembly plugin to put it all together.
I was able to build and run successfully only Felix version, but it's not reliable and breaks after any modification in dependencies versions due to unresolved import or incompatible versions of packages.
So here are my questions:
- Is Maven suitable for OSGI development at all?
- How to figure out which versions of bundles correspond to some version of OSGI specification and are compatible to each other?
For example, if my bundles depends on osgi.core:5.0 what jars are required at runtime org.apache.felix.framework: 5.6.1 or 4.6.0 org.apache.felix.configadmin: 1.8.12 or 1.6.0
- What is correct artifact names for Equinox?
There are org.eclipse.equinox:cm:3.6... and org.eclipse.equinox:org.eclipse.equinox.cm:3.6.. on the internet.
- What is a status of Pax project? There are not much of documentation and a lot of links are broken.