Search Gradle plugins

com.github.nwillc.vplugin

Gradle plugin to report newer versions of dependencies

https://github.com/nwillc/vplugin/

Sources: https://github.com/nwillc/vplugin

Version 1.3.3

Created 18 October 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. ./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

Add this plugin to your build using the plugins DSL:

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

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:1.3.3")
    }
    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:1.3.3")
      }
    }
    
    apply(plugin = "com.github.nwillc.vplugin")
  • Applying plugins to all subprojects .