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)
1.2
Created 14 September 2022.
Plugin for creating git tag for release control
Using the plugins DSL:
plugins {
id("io.github.arthurstrokov.gitReleasePlugin") version "1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.arthurstrokov:plugin:1.2")
}
}
apply(plugin = "io.github.arthurstrokov.gitReleasePlugin")
Using the plugins DSL:
plugins {
id "io.github.arthurstrokov.gitReleasePlugin" version "1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.arthurstrokov:plugin:1.2"
}
}
apply plugin: "io.github.arthurstrokov.gitReleasePlugin"