Search Gradle plugins

org.gradle.wrapper-upgrade

Owner: Gradle

A Gradle plugin that detects and updates Gradle and Maven wrappers to the latest Gradle and Maven version.

https://github.com/gradle/wrapper-upgrade-gradle-plugin/

Sources: https://github.com/gradle/wrapper-upgrade-gradle-plugin.git

Version 0.11

Created 27 October 2022.

A Gradle plugin that detects and updates Gradle and Maven wrappers to the latest Gradle and Maven version.

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.gradle.wrapper-upgrade") version "0.11"
}

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("org.gradle.wrapper-upgrade:org.gradle.wrapper-upgrade.gradle.plugin:0.11")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("org.gradle.wrapper-upgrade")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.gradle.wrapper-upgrade:org.gradle.wrapper-upgrade.gradle.plugin:0.11")
      }
    }
    
    apply(plugin = "org.gradle.wrapper-upgrade")
  • Applying plugins to all subprojects .