EclipseプロジェクトにVersions-Maven-Pluginを追加するにはどうすればよいですか?
メニューオプションを試しましたAdd Plugins
が、プラグインが見つからないようです。
EclipseプロジェクトにVersions-Maven-Pluginを追加するにはどうすればよいですか?
メニューオプションを試しましたAdd Plugins
が、プラグインが見つからないようです。
EclipseでMavenプラグインのバージョンを確認するには:
依存関係の更新に関する適切なレポートを作成するには、pomのレポート部分にversionsmavenプラグインを追加する必要があります。
<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>
version-maven-pluginをEclipseにインストールすることはできません。これは、version-maven-pluginがMavenプラグインであり、Eclipseプラグインではないためです。しかし、悪い考えではありません。