Easily check for new Maven dependency versions
If you run mvn versions:display-dependency-updates
in your Java project, you can actually get list of your outdated dependencies! If someone told me about npm outdated
I'd be like ofc there's a command like that. But since Java is still pretty new to me I'm hyped about all the new stuff I find out about 😀
If your project is huge I'd recommend outputting the stuff to a file, where you can easily find whatever you need:
mvn versions:display-dependency-updates > versions.txt
vim versions.txt