Search Gradle plugins

Version 0.3.0 (latest)

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"

Learn how to apply plugins to subprojects