io.github.davidburstrom.recursive-wrapper
Owner: David Burström
Updates the Gradle wrapper for all included projects in a single invocation.
https://github.com/davidburstrom/recursive-wrapper-gradle-plugin
Sources: https://github.com/davidburstrom/recursive-wrapper-gradle-plugin
Version 0.1.0-beta-1
Created 30 March 2023.
Updates the Gradle wrapper for all included projects in a single invocation.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.davidburstrom.recursive-wrapper") version "0.1.0-beta-1"
}
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("io.github.davidburstrom.recursive-wrapper:io.github.davidburstrom.recursive-wrapper.gradle.plugin:0.1.0-beta-1") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.davidburstrom.recursive-wrapper") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.davidburstrom.recursive-wrapper:io.github.davidburstrom.recursive-wrapper.gradle.plugin:0.1.0-beta-1") } } apply(plugin = "io.github.davidburstrom.recursive-wrapper")
- Applying plugins to all subprojects .