com.tengio.gradle.tengio-checkstyle-plugin
Owner: Tengio Ltd
Gradle plugin that extends checkstyle to support android and use Tengio checkstyle configuration
Sources: https://github.com/tengio/tengio-checkstyle-plugin
Version 1.1 (latest)
1.1
Created 22 January 2017.
Gradle plugin that extends checkstyle to support android and use Tengio checkstyle configuration
Using the plugins DSL:
plugins {
id("com.tengio.gradle.tengio-checkstyle-plugin") version "1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.tengio.gradle:tengio-checkstyle-plugin:1.1")
}
}
apply(plugin = "com.tengio.gradle.tengio-checkstyle-plugin")
Using the plugins DSL:
plugins {
id "com.tengio.gradle.tengio-checkstyle-plugin" version "1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.tengio.gradle:tengio-checkstyle-plugin:1.1"
}
}
apply plugin: "com.tengio.gradle.tengio-checkstyle-plugin"