如何将 Versions-Maven-Plugin 添加到我的 Eclipse 项目中?
我尝试了Add Plugins
菜单选项,但似乎无法找到插件。
如何将 Versions-Maven-Plugin 添加到我的 Eclipse 项目中?
我尝试了Add Plugins
菜单选项,但似乎无法找到插件。
在 Eclipse 中检查 maven 插件版本:
您必须将版本 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 插件。但不是一个坏主意。