Search Gradle plugins

com.tengio.gradle.tengio-checkstyle-plugin

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

http://www.tengio.com/

Sources: https://github.com/tengio/tengio-checkstyle-plugin

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"

Learn how to apply plugins to subprojects