MVN

org.basepom.maven : dependency-versions-check-maven-plugin

Maven & Gradle

May 20, 2023
2 stars

The dependency-versions-check plugin verifies that all resolved versions of artifacts are at least the versions specified by the project dependencies. The Maven dependency resolution process will substitute versions for the different artifacts in a dependency tree and sometimes chooses incompatible versions which leads to difficult to detect problems. This plugin resolves all dependencies and collects any requested version. It evaluates whether the resolved versions are compatible to the requested versions and reports possible conflicts.

<plugin>
    <groupId>org.basepom.maven</groupId>
    <artifactId>dependency-versions-check-maven-plugin</artifactId>
    <version>4.0.0</version>
</plugin>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.basepom.maven : dependency-versions-check-maven-plugin to add to Maven - Latest Versions:

  • Latest Stable: 4.0.0

All Versions

Choose a version of org.basepom.maven : dependency-versions-check-maven-plugin to add to Maven - All Versions:

Version Vulnerabilities Updated
4.0.x
dependency-versions-check-maven-plugin-4.0.0
3.2.x
dependency-versions-check-maven-plugin-3.2.0
3.1.x
dependency-versions-check-maven-plugin-3.1.0
3.0.x
dependency-versions-check-maven-plugin-3.0.0

How to add a plugin to Maven

Add the maven plugin to the pom.xml file information in this tag as follows:

<plugin>
    <groupId>org.basepom.maven</groupId>
    <artifactId>dependency-versions-check-maven-plugin</artifactId>
    <version>4.0.0</version>
</plugin>