com.github.ben-manes.versions
Owner: Ben Manes
Gradle plugin that provides tasks for discovering dependency updates.
https://github.com/ben-manes/gradle-versions-plugin
Version 0.51.0 (latest)
0.51.0
Created 22 January 2024.
Gradle plugin that provides tasks for discovering dependency updates.
Using the plugins DSL:
plugins {
id("com.github.ben-manes.versions") version "0.51.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.ben-manes:gradle-versions-plugin:0.51.0")
}
}
apply(plugin = "com.github.ben-manes.versions")
Using the plugins DSL:
plugins {
id "com.github.ben-manes.versions" version "0.51.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.ben-manes:gradle-versions-plugin:0.51.0"
}
}
apply plugin: "com.github.ben-manes.versions"