hu.vissy.gradle.semanticVersioning
Owner: Balázs Vissy
Generate and update versioning based on specially tagged git commit message lines.
https://github.com/balage1551/semantic-versioning-gradle/
Sources: https://github.com/balage1551/semantic-versioning-gradle/
Version 1.2.5 (latest)
Created 26 March 2024.
Generate and update versioning based on specially tagged git commit message lines.
Add this plugin to your build using the plugins DSL:
plugins {
id("hu.vissy.gradle.semanticVersioning") version "1.2.5"
}
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("hu.vissy.gradle.semanticVersioning:hu.vissy.gradle.semanticVersioning.gradle.plugin:1.2.5") }
It can then be applied in the precompiled script plugin:plugins { id("hu.vissy.gradle.semanticVersioning") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("hu.vissy.gradle.semanticVersioning:hu.vissy.gradle.semanticVersioning.gradle.plugin:1.2.5") } } apply(plugin = "hu.vissy.gradle.semanticVersioning")
- Applying plugins to all subprojects .