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 5.30.0
5.30.0
Created 11 October 2022.
Automatically eliminate technical debt
Using the plugins DSL:
plugins {
id("org.openrewrite.rewrite") version "5.30.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.openrewrite:plugin:5.30.0")
}
}
apply(plugin = "org.openrewrite.rewrite")
Using the plugins DSL:
plugins {
id "org.openrewrite.rewrite" version "5.30.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.openrewrite:plugin:5.30.0"
}
}
apply plugin: "org.openrewrite.rewrite"