I'm looking for a developmentn model with fast turnaround times when developing a multi-module, maven built, OSGi application.
Actually, the best solution seems to be Pax Construct's maven plugin (which in turn calls Pax Runner) for provisioning maven generated bundles. However, I didn't find a way howto deploy to a running OSGi container with help of this (or another) maven plugin. mvn pax:run
always starts the OSGi platform afresh. AFAIK it is also not possible to deploy to an already exisiting OSGi container not managed by Pax Runner (e.g. Glassfish v3 or SpringSource dm Server).
Does there exist a maven plugin which allows for quickly deploying a maven module to a running OSGi container, ideally being able to hook into the packaging
lifecycle phase ?
How is your development cycle when developing OSGi based applications with maven ?