org.ajoberstar.grgit-release
Owner: Andrew Oberstar
Git plugins for Gradle
http://github.com/ajoberstar/gradle-git
Version 0.10.0 (latest)
0.10.0
Created 03 January 2017.
No version description available.
Using the plugins DSL:
plugins {
id("org.ajoberstar.grgit-release") version "0.10.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.ajoberstar:gradle-git:0.10.0")
}
}
apply(plugin = "org.ajoberstar.grgit-release")
Using the plugins DSL:
plugins {
id "org.ajoberstar.grgit-release" version "0.10.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.ajoberstar:gradle-git:0.10.0"
}
}
apply plugin: "org.ajoberstar.grgit-release"