Skip to content

Instantly share code, notes, and snippets.

@nightm4re94
nightm4re94 / versioning.gradle
Last active March 15, 2023 17:14
Gradle semantic versioning
tasks.named("printGitSemVer") {
group = "versioning"
description = "Prints the Gradle project version resolved from git tags."
}
tasks.register("incrementMajorVersion") {
group = "versioning"
doLast {
String newTag