com.javiersc.semver.gradle.plugin
Owner: Javier Segovia Córdoba
Manage project versions automatically with git tags
https://github.com/JavierSegoviaCordoba/semver-gradle-plugin
Sources: https://github.com/JavierSegoviaCordoba/semver-gradle-plugin
Version 0.3.0-alpha.3
Created 10 July 2022.
Manage project versions automatically with git tags
Add this plugin to your build using the plugins DSL:
plugins {
id("com.javiersc.semver.gradle.plugin") version "0.3.0-alpha.3"
}
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.javiersc.semver.gradle.plugin:com.javiersc.semver.gradle.plugin.gradle.plugin:0.3.0-alpha.3") }
It can then be applied in the precompiled script plugin:plugins { id("com.javiersc.semver.gradle.plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.javiersc.semver.gradle.plugin:com.javiersc.semver.gradle.plugin.gradle.plugin:0.3.0-alpha.3") } } apply(plugin = "com.javiersc.semver.gradle.plugin")
- Applying plugins to all subprojects .