io.github.arthurstrokov.gitReleasePlugin
Owner: Arthur Strokov
Plugin for creating git tag for release control
https://github.com/arthurstrokov/git-release-plugin
Sources: https://github.com/arthurstrokov/git-release-plugin
Version 1.2 (latest)
Created 14 September 2022.
Plugin for creating git tag for release control
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.arthurstrokov.gitReleasePlugin") version "1.2"
}
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.arthurstrokov.gitReleasePlugin:io.github.arthurstrokov.gitReleasePlugin.gradle.plugin:1.2") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.arthurstrokov.gitReleasePlugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.arthurstrokov.gitReleasePlugin:io.github.arthurstrokov.gitReleasePlugin.gradle.plugin:1.2") } } apply(plugin = "io.github.arthurstrokov.gitReleasePlugin")
- Applying plugins to all subprojects .