搜索 Gradle 插件

版本 1.1.0(最新版)

1.1.0

创建于 2018年7月26日。

为 Android 项目配置 checkstyle 插件

使用插件 DSL

plugins {
  id("com.leinardi.android.checkstyle") version "1.1.0"
}

使用旧插件应用程序

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

apply(plugin = "com.leinardi.android.checkstyle")

使用插件 DSL

plugins {
  id "com.leinardi.android.checkstyle" version "1.1.0"
}

使用旧插件应用程序

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

apply plugin: "com.leinardi.android.checkstyle"