搜索 Gradle 插件

com.keith.gradle.keith-checkstyle-plugin

所有者: Keith Thompson

扩展 checkstyle 以支持 android 并使用 Intercoms checkstyle 配置的 Gradle 插件

http://keithjoethompson.com/

来源: https://github.com/keiththompson/android-checkstyle-plugin

版本 1.0.3 (最新)

1.0.3

创建于 2017 年 3 月 21 日。

扩展 checkstyle 以支持 android 并使用 Intercoms checkstyle 配置的 Gradle 插件

使用 插件 DSL

plugins {
  id("com.keith.gradle.keith-checkstyle-plugin") version "1.0.3"
}

使用 旧的插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.keith.gradle:keith-checkstyle-plugin:1.0.3")
  }
}

apply(plugin = "com.keith.gradle.keith-checkstyle-plugin")

使用 插件 DSL

plugins {
  id "com.keith.gradle.keith-checkstyle-plugin" version "1.0.3"
}

使用 旧的插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.keith.gradle:keith-checkstyle-plugin:1.0.3"
  }
}

apply plugin: "com.keith.gradle.keith-checkstyle-plugin"

了解如何将插件应用于子项目