Search Gradle plugins

org.myire.quill.checkstyle

Configuration of and additional functionality for the standard Checkstyle plugin

https://github.com/handmadecode/quill

Sources: https://github.com/handmadecode/quill

Version 2.3

Created 21 March 2020.

Configuration of and additional functionality for the standard Checkstyle plugin

Using the plugins DSL:

plugins {
  id("org.myire.quill.checkstyle") version "2.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.myire:quill:2.3")
  }
}

apply(plugin = "org.myire.quill.checkstyle")

Using the plugins DSL:

plugins {
  id "org.myire.quill.checkstyle" version "2.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.myire:quill:2.3"
  }
}

apply plugin: "org.myire.quill.checkstyle"

Learn how to apply plugins to subprojects