7

如何将 Versions-Maven-Plugin 添加到我的 Eclipse 项目中?

我尝试了Add Plugins菜单选项,但似乎无法找到插件。

4

2 回答 2

27

在 Eclipse 中检查 maven 插件版本:

  • 点击 Window –> Preferences –> Maven –> Installation 。它将显示带有 Maven 版本的安装窗口。
于 2014-04-01T18:04:23.137 回答
5

您必须将版本 maven 插件添加到 pom 的报告部分中,以创建有关依赖项更新的适当报告。

<reporting>
  <plugins>
    <plugin>
      <groupId>org.codehaus.mojo</groupId>
      <artifactId>versions-maven-plugin</artifactId>
      <version>1.3.1</version>
      <reportSets>
        <reportSet>
          <reports>
            <report>dependency-updates-report</report>
            <report>plugin-updates-report</report>
            <report>property-updates-report</report>
          </reports>
        </reportSet>
      </reportSets>
    </plugin>
  </plugins>
</reporting>

您不能在 Eclipse 中安装 versions-maven-plugin,因为 version-maven-plugin 是 Maven 插件而不是 Eclipse 插件。但不是一个坏主意。

于 2012-05-12T18:21:54.320 回答