插件错误:生命周期配置未涵盖执行
Posted
技术标签:
【中文标题】插件错误:生命周期配置未涵盖执行【英文标题】:Plugin error: execution not covered by lifecycle configuration 【发布时间】:2011-11-15 12:18:53 【问题描述】:我正在尝试使用 maven-warpath-plugin available here。但我的 pom.xml 文件中不断出现错误消息:
生命周期配置未涵盖插件执行:org.appfuse.plugins:maven-warpath-plugin:2.1.0:add-classes (execution: default, phase: generate-sources)
我该如何解决这个问题?这是我的 pom.xml sn-p 插件:
<plugin>
<groupId>org.appfuse.plugins</groupId>
<artifactId>maven-warpath-plugin</artifactId>
<version>2.1.0</version>
<extensions>true</extensions>
<executions>
<execution>
<goals>
<goal>add-classes</goal>
</goals>
</execution>
</executions>
</plugin>
Eclipse 为我提供了一个 quickfox 提示以“发现新的 m2e 连接器”来解决此错误。我已经安装了大多数似乎适用的可用连接器,但错误仍然存在。有什么想法可以让我完成这项工作吗?
【问题讨论】:
【参考方案1】:错误 pom.xml:生命周期配置未涵盖插件执行:org.bsc.maven:maven-processor-plugin:3.3.3:process
我的项目是 ProjectA,它是由 maven 版本 3.3.3 创建的,我使用的是 eclipse 版本 4.5。但是当安装 eclipse 版本 2021 - 4.20 时,我在 eclipse(版本 4.20)上打开 projectA 错误出现在 pom.xml 中:错误详细信息:生命周期配置未涵盖插件执行:org.bsc.maven:maven-processor-plugin:3.3 .3:流程(执行:流程,阶段:流程-资源)
不知道为什么会出现在eclipse的新版本4.20上。错误出现“执行”
<plugin>
<groupId>org.bsc.maven</groupId>
<artifactId>maven-processor-plugin</artifactId>
<version>3.3.3</version>
<executions>
<execution>
<id>process</id>
<goals>
<goal>process</goal>
</goals>
<phase>process-resources</phase>
<configuration>
非常感谢您的帮助!
【讨论】:
【参考方案2】:另见答案How to solve "Plugin execution not covered by lifecycle configuration" for Spring Data Maven Builds
【讨论】:
【参考方案3】:这是 m2e 的新 behaviour(它取代了旧的 m2eclipse 插件)。要指定 eclipse 应该对插件做什么,您必须在项目的 pom.xml 中配置构建生命周期映射 - 或安装一个连接器(它决定插件是否需要在 eclipse 构建中执行)(如果存在)。
由于 maven-warpath-plugin 似乎没有连接器,但您必须在 pom.xml 中定义行为。您可以为此使用第二个 Eclipse 快速修复(将 pom.xml 中的目标添加类永久标记为在 Eclipse 构建中被忽略)。这会将以下部分添加到您的 pom 中:
<build>
......
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings
only. It has no influence on the Maven build itself. -->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>
org.appfuse.plugins
</groupId>
<artifactId>
maven-warpath-plugin
</artifactId>
<versionRange>
[2.1.0,)
</versionRange>
<goals>
<goal>add-classes</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
如果您想在每个 Eclipse 构建中处理插件,可以将 <ignore>
操作更改为 <execute>
(在 import
、clean
、...上)。
插件配置是特定于 Eclipse 的,不会使 pom.xml 看起来更好 - 但至少它对 Maven 构建没有影响....
【讨论】:
@FrVaBe 为此执行了第二个 Eclipse 快速修复(永久将 pom.xml 中的目标添加类标记为在 Eclipse 构建中被忽略)。会影响我的网络应用程序执行吗?? @Amira Manai 它不应该影响执行,因为它对 maven 构建没有影响。 据我在测试中看到的,这种方法直接从 Maven 构建中省略了 maven-warpath-plugin,不是吗?我的意思是,我希望在我的主要战争中收到一个<type>warpath</type>
工件作为依赖项,它无法识别。
@Xtreme Biker 我不确定您所说的“省略 maven-warpath-plugin”是什么意思 - pluginManagement 部分对构建没有影响 - 它只是消除了 eclipse 错误消息。我不知道 maven-warpath-plugin 是否有可用的连接器。这将使本节变得不必要。以上是关于插件错误:生命周期配置未涵盖执行的主要内容,如果未能解决你的问题,请参考以下文章
生命周期配置未涵盖插件执行(JBossas 7 EAR 原型)