Search Gradle plugins

com.markelliot.versions

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.19.0

Created 03 October 2022.

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.

Using the plugins DSL:

plugins {
  id("com.markelliot.versions") version "0.19.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.markelliot.gradle.versions:gradle-versions:0.19.0")
  }
}

apply(plugin = "com.markelliot.versions")

Using the plugins DSL:

plugins {
  id "com.markelliot.versions" version "0.19.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.markelliot.gradle.versions:gradle-versions:0.19.0"
  }
}

apply plugin: "com.markelliot.versions"

Learn how to apply plugins to subprojects