Search Gradle plugins

Version 5.2.0

5.2.0

Created 30 June 2021.

Automatically eliminate technical debt

Add this plugin to your build using the plugins DSL:

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

See also:

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