Search Gradle plugins

Version 0.1.0-beta-3 (latest)

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"

Learn how to apply plugins to subprojects