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.3-SNAPSHOT
3.0.3-SNAPSHOT
Created 21 March 2020.
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.
Using the plugins DSL:
plugins {
id("com.github.nwillc.vplugin") version "3.0.3-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.nwillc:vplugin:3.0.3-SNAPSHOT")
}
}
apply(plugin = "com.github.nwillc.vplugin")
Using the plugins DSL:
plugins {
id "com.github.nwillc.vplugin" version "3.0.3-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.nwillc:vplugin:3.0.3-SNAPSHOT"
}
}
apply plugin: "com.github.nwillc.vplugin"