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
Created 30 June 2023.
                - [FIX] Do not update wrapper if project uses a later version (#135)
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("org.gradle.wrapper-upgrade") version "0.11.2"
}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.2") }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.2") } } apply(plugin = "org.gradle.wrapper-upgrade")
- Applying plugins to all subprojects .