de.gurkenlabs.semverguru
Owner: Matthias Wilke
"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.
Add this plugin to your build using the plugins DSL:
plugins {
id("de.gurkenlabs.semverguru") version "1.4"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("de.gurkenlabs.semverguru:de.gurkenlabs.semverguru.gradle.plugin:1.4") }
It can then be applied in the precompiled script plugin:plugins { id("de.gurkenlabs.semverguru") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.gurkenlabs.semverguru:de.gurkenlabs.semverguru.gradle.plugin:1.4") } } apply(plugin = "de.gurkenlabs.semverguru")
- Applying plugins to all subprojects .