tane.mahuta.gradle.semver-plugin
Owner: Christian Heike
A plugin which sets a semantic version to project.version
https://github.com/Tanemahuta/gradle-vgfr-plugin
Sources: https://github.com/Tanemahuta/gradle-vgfr-plugin
Version 1.0.1 (latest)
Created 20 July 2017.
A plugin which sets a semantic version to project.version
Add this plugin to your build using the plugins DSL:
plugins {
id("tane.mahuta.gradle.semver-plugin") version "1.0.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("tane.mahuta.gradle.semver-plugin:tane.mahuta.gradle.semver-plugin.gradle.plugin:1.0.1") }
It can then be applied in the precompiled script plugin:plugins { id("tane.mahuta.gradle.semver-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("tane.mahuta.gradle.semver-plugin:tane.mahuta.gradle.semver-plugin.gradle.plugin:1.0.1") } } apply(plugin = "tane.mahuta.gradle.semver-plugin")
- Applying plugins to all subprojects .