Enrique Rodriguez wrote:
...
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-osgi-plugin</artifactId>
<extensions>true</extensions>
I got that groupId wrong from a cut-n-paste. Please use org.apache.felix.plugins, which I think makes sense. Let me know otherwise:
<plugin>
<groupId>org.apache.felix.plugins</groupId>
<artifactId>maven-osgi-plugin</artifactId>
<extensions>true</extensions>
<version>0.3.0</version>
...
Enrique

