We just ran into this problem though with org.apache.felix: maven-bundle-plugin.
Our problem is that we did not specify the version of the plugin inside pom.xml:
<plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> </plugin>
Everything was good and good, and everything worked with (then) the latest version of the plugin, i.e. 2.3.4.
However, when the new version of the plugin became available in the external Maven repository (version 2.3.5), we received the following error:
... [FATAL ERROR] org.apache.felix.bundleplugin.BundlePlugin
We solved this problem by explicitly specifying the plugin version inside our pom.xml:
<plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.3.4</version> </plugin>
Hope this helps.
ryan
source share