Search Gradle plugins

Version 1.3.5

Created 31 December 2016.

Gradle plugin to report newer versions of dependencies. Traverses your
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.
<pre>
./gradlew versions
:versions
Searching repositories:
BintrayJCenter at https://jcenter.bintray.com/
MavenRepo at https://repo1.maven.org/maven2/
maven at https://maven.eveoh.nl/content/repositories/releases
maven2 at https://plugins.gradle.org/m2

Dependency Using Update
---------- ----- ------
com.sparkjava:spark-core 2.3 2.5.1
commons-cli:commons-cli 1.3
io.orchestrate:orchestrate-client 0.13.0
</pre>

Using the plugins DSL:

plugins {
  id("com.github.nwillc.vplugin") version "1.3.5"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects