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.1 (latest)

1.1

Created 22 January 2017.

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

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.tengio.gradle.tengio-checkstyle-plugin") version "1.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.tengio.gradle:tengio-checkstyle-plugin:1.1")
      }
    }
    
    apply(plugin = "com.tengio.gradle.tengio-checkstyle-plugin")
  • Applying plugins to all subprojects .