Search Gradle plugins

Version 3.0.5 (latest)

Created 03 May 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.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.nwillc:vplugin:3.0.5")
  }
}

apply(plugin = "com.github.nwillc.vplugin")

Using the plugins DSL:

plugins {
  id "com.github.nwillc.vplugin" version "3.0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.nwillc:vplugin:3.0.5"
  }
}

apply plugin: "com.github.nwillc.vplugin"

Learn how to apply plugins to subprojects