Checks if there are any new Maven project dependencies or build plugins available.
A notification dialogue will show you which dependencies or plugins used in the project can and should be updated in order to avoid security issues for example.
You'll see the version of the dependencies you use right now and the latest versions available at Maven Central. You can choose to keep the comparison results by copying the information to the system clipboard.
The plugin does NOT modify your POM file.
In order to check for updates just select your Maven POM file (pom.xml) in the project explorer view. Right-click the file and choose Check Maven Dependencies from the context menu. You can right-click somewhere in the text editor view as well if the POM file is opened in the editor.
If for some reason you do want the plugin to check for major version updates of your dependencies you can diasable the check in the plugin's settings. Minor and patch version updates are checked nevertheless.
Please keep in mind that Maven dependencies and plugins which are available at Maven Central will be checked only.
Using IDE built-in plugin system:
Settings/Preferences > Plugins > Marketplace > Search for "MavenDependencyChecker" > Install Plugin
Manually:
Download the latest release and install it manually using Settings/Preferences > Plugins > ⚙️ > Install plugin from disk...
The plugin is written in Java using Jetbrains' plugin template and framework. The code is hosted on GitHub. Builds are performed with the Jetbrains Gradle plugin and automated by GitHub Actions.
If you encouter a bug please create an issue in the plugin's issue tracker. Feel free to request new features.
Plugin based on the IntelliJ Platform Plugin Template.