com.tengio.gradle.tengio-checkstyle-plugin
Owner:
Tengio Ltd
Gradle plugin that extends checkstyle to support android and use Tengio checkstyle configuration
Version 1.0
Created 25 December 2016.
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.0"
}
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.0")
}
}
apply(plugin = "com.tengio.gradle.tengio-checkstyle-plugin")
Using the plugins DSL:
plugins {
id "com.tengio.gradle.tengio-checkstyle-plugin" version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.tengio.gradle:tengio-checkstyle-plugin:1.0"
}
}
apply plugin: "com.tengio.gradle.tengio-checkstyle-plugin"