com.fizzpod.git-semver
Owner: andy.j.dunn
Gradle plugin to integrate git-semver into a gradle project.
https://github.com/boxheed/gradle-git-semver-plugin
Sources: https://github.com/boxheed/gradle-git-semver-plugin
Version 0.2.1
Created 04 December 2024.
Gradle plugin to integrate git-semver into a gradle project.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.fizzpod.git-semver") version "0.2.1"
}
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("com.fizzpod.git-semver:com.fizzpod.git-semver.gradle.plugin:0.2.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.fizzpod.git-semver") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.fizzpod.git-semver:com.fizzpod.git-semver.gradle.plugin:0.2.1") } } apply(plugin = "com.fizzpod.git-semver")
- Applying plugins to all subprojects .