Search Gradle plugins

com.keith.gradle.keith-checkstyle-plugin

Gradle plugin that extends checkstyle to support android and use Intercoms checkstyle configuration

http://keithjoethompson.com/

Sources: https://github.com/keiththompson/android-checkstyle-plugin

Version 1.0.3 (latest)

Created 21 March 2017.

Gradle plugin that extends checkstyle to support android and use Intercoms checkstyle configuration

Using the plugins DSL:

plugins {
  id("com.keith.gradle.keith-checkstyle-plugin") version "1.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.keith.gradle:keith-checkstyle-plugin:1.0.3")
  }
}

apply(plugin = "com.keith.gradle.keith-checkstyle-plugin")

Using the plugins DSL:

plugins {
  id "com.keith.gradle.keith-checkstyle-plugin" version "1.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.keith.gradle:keith-checkstyle-plugin:1.0.3"
  }
}

apply plugin: "com.keith.gradle.keith-checkstyle-plugin"

Learn how to apply plugins to subprojects