搜索 Gradle 插件

com.github.ksoichiro.commit.checker

所有者: Soichiro Kashima

Gradle 插件,用于检查分支中的提交,以避免在拉取请求中产生大的差异

https://github.com/ksoichiro/gradle-commit-checker-plugin

来源: https://github.com/ksoichiro/gradle-commit-checker-plugin.git

版本 0.1.1 (最新版)

0.1.1

创建于 2015 年 12 月 25 日。

Gradle 插件,用于检查分支中的提交,以避免在拉取请求中产生大的差异

使用 插件 DSL

plugins {
  id("com.github.ksoichiro.commit.checker") version "0.1.1"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.ksoichiro:gradle-commit-checker-plugin:0.1.1")
  }
}

apply(plugin = "com.github.ksoichiro.commit.checker")

使用 插件 DSL

plugins {
  id "com.github.ksoichiro.commit.checker" version "0.1.1"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.ksoichiro:gradle-commit-checker-plugin:0.1.1"
  }
}

apply plugin: "com.github.ksoichiro.commit.checker"

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