当前位置: 代码迷 >> 综合 >> Maven项目:Plugin execution not covered by lifecycle configuration 解决方案
  详细解决方案

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

热度:80   发布时间:2023-12-17 16:27:32.0

这个是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>
  相关解决方案