How to check pom.xml for updated dependencies

前端 未结 3 858
眼角桃花
眼角桃花 2021-01-30 15:57

I am fairly new to Maven and pom.xml. Is there a way I can find out which of my dependencies that are outdated, so that I can update version numbers in my pom.xml.

In ot

3条回答
  •  余生分开走
    2021-01-30 16:53

    If you want to do it fast you can use www.versioneye.com site.

    There you can define your project and upload project pom.xml, the site will also send you regular emails which notify you about new updates.

    You can also mention which libraries do you want to check for update.

    I don't know if it automatically fully sync with maven repo or not, but I always find its lib versions are update.

    Update:

    After 6 years the project switched off :(

    So the mvn versions:display-dependency-updates seems to be the choice.

提交回复
热议问题