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.4 (latest)
0.11.4
Created 29 September 2023.
- [FIX] PGP key to sign the artifacts needs to be rotated
Using the plugins DSL:
plugins {
id("org.gradle.wrapper-upgrade") version "0.11.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.gradle:wrapper-upgrade-gradle-plugin:0.11.4")
}
}
apply(plugin = "org.gradle.wrapper-upgrade")
Using the plugins DSL:
plugins {
id "org.gradle.wrapper-upgrade" version "0.11.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.gradle:wrapper-upgrade-gradle-plugin:0.11.4"
}
}
apply plugin: "org.gradle.wrapper-upgrade"