Search Gradle plugins

com.github.ben-manes.versions

Gradle plugin that provides tasks for discovering dependency updates.

https://github.com/ben-manes/gradle-versions-plugin

Using the plugins DSL:

plugins {
  id("com.github.ben-manes.versions") version "0.11.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.ben-manes:gradle-versions-plugin:0.11.1")
  }
}

apply(plugin = "com.github.ben-manes.versions")

Using the plugins DSL:

plugins {
  id "com.github.ben-manes.versions" version "0.11.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.ben-manes:gradle-versions-plugin:0.11.1"
  }
}

apply plugin: "com.github.ben-manes.versions"

Learn how to apply plugins to subprojects