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.2
0.11.2
Created 30 June 2023.
- [FIX] Do not update wrapper if project uses a later version (#135)
Using the plugins DSL:
plugins {
id("org.gradle.wrapper-upgrade") version "0.11.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.gradle:wrapper-upgrade-gradle-plugin:0.11.2")
}
}
apply(plugin = "org.gradle.wrapper-upgrade")
Using the plugins DSL:
plugins {
id "org.gradle.wrapper-upgrade" version "0.11.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.gradle:wrapper-upgrade-gradle-plugin:0.11.2"
}
}
apply plugin: "org.gradle.wrapper-upgrade"