m

maven-dependency-versions-check-plugin

The maven-dependency-versions-check-plugin is a Maven plugin that verifies that the resolved versions of dependencies are at least the versions specified by the dependencies (or their dependencies etc.) if not higher. More specifically, it will check that * The resolved version of every dependency declared explicitly in the current POM is the same or a newer one than what was stated. If the resolved version has a higher major version number than the declared version, then the plugin will issue a warning if configured to do so. Note that enforced declared versions are ignored by the plugin. * For every explicitly declared dependency in the current POM, all its dependency versions are met. I.e. the resolved versions for all dependencies in that dependency's POM are the same or higher than the one stated in that dependency's POM. This is basically the same check as the one above, but using the dependency's POM! Also, if the current POM has exclusions specified for the dependency, then these transitive dependencies are ignored when checking this particular dependency.
https://github.com/ning/maven-dependency-versions-check-plugin
Apache License 2.0
Thomas Dudziak Henning Schmiedehausen
文件下载
文件名 操作
maven-dependency-versions-check-plugin-2.0.4.jar 下载
maven-dependency-versions-check-plugin-2.0.4.pom 下载
maven-dependency-versions-check-plugin-2.0.4-sources.jar 下载
Apache Maven
<dependency>
  <groupId>com.ning.maven.plugins</groupId>
  <artifactId>maven-dependency-versions-check-plugin</artifactId>
  <version>2.0.4</version>
  <type>maven-plugin</type>
</dependency>
Gradle Groovy
implementation 'com.ning.maven.plugins:maven-dependency-versions-check-plugin:2.0.4'
Gradle Kotlin
implementation("com.ning.maven.plugins:maven-dependency-versions-check-plugin:2.0.4")
Scala SBT
libraryDependencies += "com.ning.maven.plugins" % "maven-dependency-versions-check-plugin" % "2.0.4"
Groovy Grape
@Grapes(
  @Grab(group='com.ning.maven.plugins', module='maven-dependency-versions-check-plugin', version='2.0.4')
)
Apache Ivy
<dependency org="com.ning.maven.plugins" name="maven-dependency-versions-check-plugin" rev="2.0.4" />
Leiningen
[com.ning.maven.plugins/maven-dependency-versions-check-plugin "2.0.4"]
Apache Buildr
'com.ning.maven.plugins:maven-dependency-versions-check-plugin:jar:2.0.4'