com.github.nwillc.vplugin
Owner: N Christopher
Gradle plugin to report newer versions of dependencies
https://github.com/nwillc/vplugin/
Sources: https://github.com/nwillc/vplugin
Version 3.0.0-SNAPSHOT
Created 20 July 2019.
Gradle plugin to report newer versions of dependencies. Traverses your buildscript,
compile and runtime dependencies. For each dependency, all of your declared repositories are
checked, and the highest version is found. A text report is generated showing the dependencies,
their current version, and higher ones if available.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.github.nwillc.vplugin") version "3.0.0-SNAPSHOT"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.github.nwillc.vplugin:com.github.nwillc.vplugin.gradle.plugin:3.0.0-SNAPSHOT") }
It can then be applied in the precompiled script plugin:plugins { id("com.github.nwillc.vplugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.github.nwillc.vplugin:com.github.nwillc.vplugin.gradle.plugin:3.0.0-SNAPSHOT") } } apply(plugin = "com.github.nwillc.vplugin")
- Applying plugins to all subprojects .