org.openrewrite.rewrite
Owner: Moderne, Inc.
Automatically eliminate technical debt
https://github.com/openrewrite/rewrite-gradle-plugin
Sources: https://github.com/openrewrite/rewrite-gradle-plugin.git
Version 3.0.0-rc.2
3.0.0-rc.2
Created 25 February 2021.
Automatically eliminate technical debt
Using the plugins DSL:
plugins {
id("org.openrewrite.rewrite") version "3.0.0-rc.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.openrewrite:plugin:3.0.0-rc.2")
}
}
apply(plugin = "org.openrewrite.rewrite")
Using the plugins DSL:
plugins {
id "org.openrewrite.rewrite" version "3.0.0-rc.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.openrewrite:plugin:3.0.0-rc.2"
}
}
apply plugin: "org.openrewrite.rewrite"