Search Gradle plugins

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "org.openrewrite.rewrite"

Learn how to apply plugins to subprojects