com.golvanig.plugin.gradle.gitflowext
Owner: Thierry Golvanig
propose versionning information from a git repo following an Extended GitFlow
Sources: https://github.com/Golvanig
Version 1.1.0-beta1
1.1.0-beta1
Created 04 March 2019.
propose versionning information from a git repo following an Extended GitFlow
Using the plugins DSL:
plugins {
id("com.golvanig.plugin.gradle.gitflowext") version "1.1.0-beta1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.golvanig:plugin.gradle.gitflowext:1.1.0-beta1")
}
}
apply(plugin = "com.golvanig.plugin.gradle.gitflowext")
Using the plugins DSL:
plugins {
id "com.golvanig.plugin.gradle.gitflowext" version "1.1.0-beta1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.golvanig:plugin.gradle.gitflowext:1.1.0-beta1"
}
}
apply plugin: "com.golvanig.plugin.gradle.gitflowext"