com.markelliot.versions
Owner: Mark Elliot
Creates a task that determines available dependency and plugin upgrades for a project and produces a YAML report. Additionally provides two tasks for updating the versions in a versions.props file (nebula.dependency-recommender or com.palantir.consistent-versions compatible) and updating plugin versions in Gradle plugin blocks.
https://github.com/markelliot/gradle-versions
Sources: https://github.com/markelliot/gradle-versions
Version 0.41.0
0.41.0
Created 09 February 2023.
Creates a task that determines available dependency and plugin upgrades for a project and produces a YAML report. Additionally provides two tasks for updating the versions in a versions.props file (nebula.dependency-recommender or com.palantir.consistent-versions compatible) and updating plugin versions in Gradle plugin blocks.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.markelliot.versions") version "0.41.0"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.markelliot.gradle.versions:gradle-versions:0.41.0") } } apply(plugin = "com.markelliot.versions")
- Applying plugins to all subprojects .