How can I get a compatible version syntax in Manifest.MF from the maven-bundle-plugin Plugin? The new one generates new syntax that can't be read by ServiceMix

2011-06-03 Thread Richard Katz
I am having a problem where the org.apache.felix maven-bundle-plugin which generates version syntax that is not compatible with the Apache ServiceMix OSGI container. It won't deploy. A previous version of the plug-in generated the version syntax as "X.Y" in MANIFEST.MF Import-Package: edu.b

Re: How can I get a compatible version syntax in Manifest.MF from the maven-bundle-plugin Plugin? The new one generates new syntax that can't be read by ServiceMix

2011-06-07 Thread Peter Kriens
> What does open-bracket X dot Y comma Z close-paren actually mean? This is the standard syntax for specifying a range of versions. Bracket means inclusive and parenthesis means exclusive. So [2.1,3) means at least version 2.1.0 and at most version 3.0.0. The old bnd just import 2.1 or any later