Search Gradle plugins

Version 2.0.1

Created 01 January 2017.

Gradle plugin to report newer versions of dependencies. Traverses your plugin,
compile and runtime dependencies. For each dependency, all of your declared repositories are
checked, and the highest version is found. A 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 "2.0.1"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects