com.github.vlsi.stage-vote-release
Owner: Vladimir Sitnikov
Allows to stage the artifacts and vote on them befor the release
https://github.com/vlsi/vlsi-release-plugins
Sources: https://github.com/vlsi/vlsi-release-plugins
Version 1.90 (latest)
1.90
Created 24 June 2023.
Allows to stage the artifacts and vote on them before the release
Using the plugins DSL:
plugins {
id("com.github.vlsi.stage-vote-release") version "1.90"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.vlsi.gradle:stage-vote-release-plugin:1.90")
}
}
apply(plugin = "com.github.vlsi.stage-vote-release")
Using the plugins DSL:
plugins {
id "com.github.vlsi.stage-vote-release" version "1.90"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.vlsi.gradle:stage-vote-release-plugin:1.90"
}
}
apply plugin: "com.github.vlsi.stage-vote-release"