搜索Gradle插件

版本 1.0.7(最新版本)

1.0.7

创建于2019年9月4日。

一组用于检查所有文件文件风格的任务以及用于检查Gradle代码代码风格的任务

使用插件DSL

plugins {
  id("all.shared.gradle.project-style-checker") version "1.0.7"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.all.shared.gradle.project-style-checker:project-style-checker:1.0.7")
  }
}

apply(plugin = "all.shared.gradle.project-style-checker")

使用插件DSL

plugins {
  id "all.shared.gradle.project-style-checker" version "1.0.7"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.all.shared.gradle.project-style-checker:project-style-checker:1.0.7"
  }
}

apply plugin: "all.shared.gradle.project-style-checker"

学习如何将插件应用于子项目