Hi to all,
I'm trying to use the maven-bundle-plugin 2.0.1 to build RCP
applications under Eclipse with m2eclipse.
As such, it's an IDE (PDE) driven application and it should follow the
various meta informations set by Eclipse IDE.
For instance, I'd like to use the MANIFEST.MF but override the
Bundle-Version with the one from pom.xml like this :
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-Version>${pom.version}</Bundle-Version>
<_include>META-INF/MANIFEST.MF</_include>
</instructions>
</configuration>
</plugin>
</plugins>
It seems, the Bundle-Version directive is not followed by
maven-bundle-plugin when <_include>META-INF/MANIFEST.MF</_include> is
in use.
Anything to do to overcome this ?
Regards
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]