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>
<pluginManagement>
<plugins>  
<plugin>

plugin>
plugins>
pluginManagement>
build>

转载于:https://www.cnblogs.com/lanzhi/p/6468942.html

你可能感兴趣的:(Maven项目:Plugin execution not covered by lifecycle configuration 解决方案)