Maven项目:Plugin execution not covered by lifecycle configuration 解决方案

这个是eclipse中配置文件pom.xml报的错。具体错误信息:

Plugin execution not covered by lifecycle configuration: 
org.apache.felix:maven-bundle-plugin:2.5.3:manifest (execution: 
bundle-manifest, phase: process-classes)

在网上有很多针对这个问题的处理,在国外的论坛上有一个比较简单的处理方式,在<build> <plugins>标签之间加上一个<pluginManagement>标签就行了。
例如:

<build>
<pluginManagement>
<plugins>  
<plugin>
<!--报错插件 -->
</plugin>
</plugins>
</pluginManagement>
</build>

posted on 2015-04-26 18:05  岚之山  阅读(247)  评论(0编辑  收藏  举报

导航