Search Gradle plugins

de.gurkenlabs.semverguru

"SemVerGuru" is your go-to Gradle plugin for effortless version management. Powered by Grgit and git describe, it seamlessly derives your project's version from Git tags. Take control of your versioning journey with easy Semantic Versioning increments, and with one-click git tag pushing. Keep it simple, stay semantic, and let SemVerGuru handle your project versions with ease.

https://codeberg.org/nightm4re/SemVerGuru

Sources: https://codeberg.org/nightm4re/SemVerGuru.git

Version 1.4 (latest)

Created 31 December 2023.

"SemVerGuru" is your go-to Gradle plugin for effortless version management. Powered by Grgit and git describe, it seamlessly derives your project's version from Git tags. Take control of your versioning journey with easy Semantic Versioning increments, and with one-click git tag pushing. Keep it simple, stay semantic, and let SemVerGuru handle your project versions with ease.

Using the plugins DSL:

plugins {
  id("de.gurkenlabs.semverguru") version "1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("de.gurkenlabs:semverguru:1.4")
  }
}

apply(plugin = "de.gurkenlabs.semverguru")

Using the plugins DSL:

plugins {
  id "de.gurkenlabs.semverguru" version "1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "de.gurkenlabs:semverguru:1.4"
  }
}

apply plugin: "de.gurkenlabs.semverguru"

Learn how to apply plugins to subprojects