Search Gradle plugins

Version 6.23.3 (latest)

6.23.3

Created 12 September 2024.

Automatically eliminate technical debt

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "org.openrewrite.rewrite"

Learn how to apply plugins to subprojects