搜索 Gradle 插件

版本 0.10.0 (最新)

0.10.0

创建于 2017 年 1 月 3 日。

没有可用的版本描述。

使用 插件 DSL

plugins {
  id("org.ajoberstar.grgit-release") version "0.10.0"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("org.ajoberstar:gradle-git:0.10.0")
  }
}

apply(plugin = "org.ajoberstar.grgit-release")

使用 插件 DSL

plugins {
  id "org.ajoberstar.grgit-release" version "0.10.0"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "org.ajoberstar:gradle-git:0.10.0"
  }
}

apply plugin: "org.ajoberstar.grgit-release"

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