com.gitlab.grrfe.version-helper
Owner: grrfe
Reads version from git tag, adds handler to read version in binary
Sources: https://gitlab.com/grrfe/version-helper
Version 2.1.2
2.1.2
Created 09 September 2022.
Reads version from git tag, adds handler to read version in binary
Using the plugins DSL:
plugins {
id("com.gitlab.grrfe.version-helper") version "2.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.gitlab.grrfe.version-helper:version-helper:2.1.2")
}
}
apply(plugin = "com.gitlab.grrfe.version-helper")
Using the plugins DSL:
plugins {
id "com.gitlab.grrfe.version-helper" version "2.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.gitlab.grrfe.version-helper:version-helper:2.1.2"
}
}
apply plugin: "com.gitlab.grrfe.version-helper"