Search Gradle plugins

Version 5.11.0

5.11.0

Created 29 September 2021.

Automatically eliminate technical debt

Using the plugins DSL:

plugins {
  id("org.openrewrite.rewrite") version "5.11.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.openrewrite:plugin:5.11.0")
  }
}

apply(plugin = "org.openrewrite.rewrite")

Using the plugins DSL:

plugins {
  id "org.openrewrite.rewrite" version "5.11.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.openrewrite:plugin:5.11.0"
  }
}

apply plugin: "org.openrewrite.rewrite"

Learn how to apply plugins to subprojects