【发布时间】:2015-06-26 03:02:50
【问题描述】:
我正在尝试让示例 Jenkins 插件 (https://github.com/jenkinsci/hello-world-plugin) 运行。我正在使用 Eclipse 的 maven 插件在大多数情况下,它正在工作,但我在 pom.xml 中遇到错误,说 Plugin execution not covered by lifecycle configuration。它在打开的父标签上弹出,如下所示。我应该怎么做才能解决这个问题?
<parent>
<groupId>org.jvnet.hudson.plugins</groupId>
<artifactId>plugin</artifactId>
<version>1.392</version>
<relativePath>../pom.xml</relativePath>
</parent>
【问题讨论】:
标签: java xml maven jenkins-plugins