org.openrewrite.rewrite-checkstyle
Owner: Moderne, Inc.
Automatically fix checkstyle issues.
https://github.com/openrewrite/rewrite-gradle-plugin
Sources: https://github.com/openrewrite/rewrite-gradle-plugin.git
Version 0.3.0 (latest)
0.3.0
Created 20 May 2020.
Automatically fix checkstyle issues.
Using the plugins DSL:
plugins {
id("org.openrewrite.rewrite-checkstyle") version "0.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.openrewrite:plugin:0.3.0")
}
}
apply(plugin = "org.openrewrite.rewrite-checkstyle")
Using the plugins DSL:
plugins {
id "org.openrewrite.rewrite-checkstyle" version "0.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.openrewrite:plugin:0.3.0"
}
}
apply plugin: "org.openrewrite.rewrite-checkstyle"