io.github.serpro69.semantic-versioning
Owner: Serhii Prodan
This plugin helps you to automatically version your gradle project according to semver rules
https://github.com/serpro69/semver.kt
Sources: https://github.com/serpro69/semver.kt.git
Version 0.14.0 (latest)
Created 28 April 2024.
This plugin helps you to automatically version your gradle project according to semver rules
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.serpro69.semantic-versioning") version "0.14.0"
}
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("io.github.serpro69.semantic-versioning:io.github.serpro69.semantic-versioning.gradle.plugin:0.14.0") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.serpro69.semantic-versioning") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.serpro69.semantic-versioning:io.github.serpro69.semantic-versioning.gradle.plugin:0.14.0") } } apply(plugin = "io.github.serpro69.semantic-versioning")
- Applying plugins to all subprojects .