com.gitlab.grrfe.version-helper
Owner:
grrfe
Reads version from git tag, adds handler to read version in binary
Version 2.1.22
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.22"
}
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.22")
}
}
apply(plugin = "com.gitlab.grrfe.version-helper")
Using the plugins DSL:
plugins {
id "com.gitlab.grrfe.version-helper" version "2.1.22"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.gitlab.grrfe.version-helper:version-helper:2.1.22"
}
}
apply plugin: "com.gitlab.grrfe.version-helper"