io.wusa.semver-git-plugin
Owner: Matthias
Project versioning based on semantic versioning via git tags
https://github.com/ilovemilk/semver-git-plugin
Sources: https://github.com/ilovemilk/semver-git-plugin
Version 2.3.7 (latest)
Created 04 December 2020.
Project versioning based on semantic versioning via git tags
Add this plugin to your build using the plugins DSL:
plugins {
id("io.wusa.semver-git-plugin") version "2.3.7"
}
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.wusa.semver-git-plugin:io.wusa.semver-git-plugin.gradle.plugin:2.3.7") }
It can then be applied in the precompiled script plugin:plugins { id("io.wusa.semver-git-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.wusa.semver-git-plugin:io.wusa.semver-git-plugin.gradle.plugin:2.3.7") } } apply(plugin = "io.wusa.semver-git-plugin")
- Applying plugins to all subprojects .