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-3 (latest)
0.1.0-beta-3
Created 19 April 2023.
Updates the Gradle wrapper for all included projects in a single invocation.
Using the plugins DSL:
plugins {
id("io.github.davidburstrom.recursive-wrapper") version "0.1.0-beta-3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.davidburstrom.gradle.recursive-wrapper:recursive-wrapper:0.1.0-beta-3")
}
}
apply(plugin = "io.github.davidburstrom.recursive-wrapper")
Using the plugins DSL:
plugins {
id "io.github.davidburstrom.recursive-wrapper" version "0.1.0-beta-3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.davidburstrom.gradle.recursive-wrapper:recursive-wrapper:0.1.0-beta-3"
}
}
apply plugin: "io.github.davidburstrom.recursive-wrapper"