搜索Gradle插件

版本 0.0.4 (最新)

0.0.4

创建于 2023年11月7日。

验证当前git分支的一些属性

使用插件DSL

plugins {
  id("com.github.ivankohut.git-branch-checks") version "0.0.4"
}

使用传统插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.ivankohut:git-branch-checks:0.0.4")
  }
}

apply(plugin = "com.github.ivankohut.git-branch-checks")

使用插件DSL

plugins {
  id "com.github.ivankohut.git-branch-checks" version "0.0.4"
}

使用传统插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.ivankohut:git-branch-checks:0.0.4"
  }
}

apply plugin: "com.github.ivankohut.git-branch-checks"

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