com.keith.gradle.keith-checkstyle-plugin
Owner:
Keith Thompson
Gradle plugin that extends checkstyle to support android and use Intercoms checkstyle configuration
Version 1.0.2
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.2"
}
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.2")
}
}
apply(plugin = "com.keith.gradle.keith-checkstyle-plugin")
Using the plugins DSL:
plugins {
id "com.keith.gradle.keith-checkstyle-plugin" version "1.0.2"
}
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.2"
}
}
apply plugin: "com.keith.gradle.keith-checkstyle-plugin"