com.keith.gradle.keith-checkstyle-plugin
Owner: Keith Thompson
Gradle plugin that extends checkstyle to support android and use Intercoms checkstyle configuration
Sources: https://github.com/keiththompson/android-checkstyle-plugin
Version 1.0.3 (latest)
1.0.3
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"