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.1.1 (latest)
Created 25 May 2023.
Automatically sets your version based on configurable git information
Using the plugins DSL:
plugins {
id("com.wagner.gitver") version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.wagner:gitver:0.1.1")
}
}
apply(plugin = "com.wagner.gitver")
Using the plugins DSL:
plugins {
id "com.wagner.gitver" version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.wagner:gitver:0.1.1"
}
}
apply plugin: "com.wagner.gitver"