com.github.vlsi.stage-vote-release
所有者: 弗拉基米尔·sitnikov
允许在发布之前对工件进行暂存并进行投票
https://github.com/vlsi/vlsi-release-plugins
来源: https://github.com/vlsi/vlsi-release-plugins
使用插件 DSL
plugins {
id("com.github.vlsi.stage-vote-release") version "1.90"
}
使用旧的插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.vlsi.gradle:stage-vote-release-plugin:1.90")
}
}
apply(plugin = "com.github.vlsi.stage-vote-release")
使用插件 DSL
plugins {
id "com.github.vlsi.stage-vote-release" version "1.90"
}
使用旧的插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.vlsi.gradle:stage-vote-release-plugin:1.90"
}
}
apply plugin: "com.github.vlsi.stage-vote-release"