com.xenoterracide.gradle.semver
Owner: Caleb Cushing
A semantic versioning plugin that derives the version from git tags and commits and is configuration cache safe.
https://github.com/xenoterracide/gradle-semver
Sources: https://github.com/xenoterracide/gradle-semver.git
Version 0.9.3
0.9.3
Created 27 February 2024.
A semantic versioning plugin that derives the version from git tags and commits and is configuration cache safe.
Using the plugins DSL:
plugins {
id("com.xenoterracide.gradle.semver") version "0.9.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.xenoterracide:gradle-semver:0.9.3")
}
}
apply(plugin = "com.xenoterracide.gradle.semver")
Using the plugins DSL:
plugins {
id "com.xenoterracide.gradle.semver" version "0.9.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.xenoterracide:gradle-semver:0.9.3"
}
}
apply plugin: "com.xenoterracide.gradle.semver"