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.0.0-SNAPSHOT
1.0.0-SNAPSHOT
Created 28 June 2019.
Allows to stage the artifacts and vote on them befor the release
Using the plugins DSL:
plugins {
id("com.github.vlsi.stage-vote-release") version "1.0.0-SNAPSHOT"
}
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.0.0-SNAPSHOT")
}
}
apply(plugin = "com.github.vlsi.stage-vote-release")
Using the plugins DSL:
plugins {
id "com.github.vlsi.stage-vote-release" version "1.0.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.vlsi.gradle:stage-vote-release-plugin:1.0.0-SNAPSHOT"
}
}
apply plugin: "com.github.vlsi.stage-vote-release"