Version 0.9.0 (latest)
Created 29 April 2021.
Glade plugin getting version from GIT annotations
Using the plugins DSL:
plugins {
id("it.smartio.gradle.version") version "0.9.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("it.smartio:gitversion:0.9.0")
}
}
apply(plugin = "it.smartio.gradle.version")
Using the plugins DSL:
plugins {
id "it.smartio.gradle.version" version "0.9.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "it.smartio:gitversion:0.9.0"
}
}
apply plugin: "it.smartio.gradle.version"