com.wagner.gitver
Owner: Saejin Mahlau-Heinert
Automatically sets your version based on configurable git information
https://github.com/michionlion/gradle-git-version
Sources: https://github.com/michionlion/gradle-git-version
Version 0.0.1
0.0.1
Created 16 March 2021.
Automatically sets your version based on configurable git information
Using the plugins DSL:
plugins {
id("com.wagner.gitver") version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.wagner:gitver:0.0.1")
}
}
apply(plugin = "com.wagner.gitver")
Using the plugins DSL:
plugins {
id "com.wagner.gitver" version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.wagner:gitver:0.0.1"
}
}
apply plugin: "com.wagner.gitver"