org.dmfs.gver
Owner: Marten Gajda
Gradle versioning based on git history.This plugin was formerly published with the ID org.dmfs.gitversion.
Sources: https://github.com/dmfs/gver
Version 0.23.0
0.23.0
Created 03 September 2023.
Gradle versioning based on git history.This plugin was formerly published with the ID org.dmfs.gitversion.
Using the plugins DSL:
plugins {
id("org.dmfs.gver") version "0.23.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.dmfs:gradle-plugin:0.23.0")
}
}
apply(plugin = "org.dmfs.gver")
Using the plugins DSL:
plugins {
id "org.dmfs.gver" version "0.23.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.dmfs:gradle-plugin:0.23.0"
}
}
apply plugin: "org.dmfs.gver"