Search Gradle plugins

Version 6.20.0

6.20.0

Created 12 August 2024.

Automatically eliminate technical debt

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.openrewrite:plugin:6.20.0")
      }
    }
    
    apply(plugin = "org.openrewrite.rewrite")
  • Applying plugins to all subprojects .