搜索Gradle插件

版本 0.0.1 (最新)

0.0.1

创建于2018年8月21日。

由于JCenter成为永久重定向到Maven Central,该插件将不再执行解析,因为它只使用JCenter中可找到的依赖项。有关详细信息,请参见以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact A gradle plugin that leaves comment of the result of a "KtLint" on github's pull request.

使用插件DSL

plugins {
  id("com.github.unchai.ktlint-github") version "0.0.1"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.unchai.gradle.ktlint:ktlint-github-gradle-plugin:0.0.1")
  }
}

apply(plugin = "com.github.unchai.ktlint-github")

使用插件DSL

plugins {
  id "com.github.unchai.ktlint-github" version "0.0.1"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.unchai.gradle.ktlint:ktlint-github-gradle-plugin:0.0.1"
  }
}

apply plugin: "com.github.unchai.ktlint-github"

学习如何应用插件到子项目