ws.gross.release-approve
Owner: Konstantin Gribov
Gradle plugin which adds approve for rc/final tasks when `nebula.release` plugin present. Use `-Prelease.approve=true` in non-interactive context.
https://github.com/grossws/private-repo
Sources: https://github.com/grossws/private-repo.git
Version 0.14.0
0.14.0
Created 21 February 2022.
Gradle plugin which adds approve for rc/final tasks when `nebula.release` plugin present.
Use `-Prelease.approve=true` in non-interactive context.
Using the plugins DSL:
plugins {
id("ws.gross.release-approve") version "0.14.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("ws.gross.gradle:private-repo:0.14.0")
}
}
apply(plugin = "ws.gross.release-approve")
Using the plugins DSL:
plugins {
id "ws.gross.release-approve" version "0.14.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "ws.gross.gradle:private-repo:0.14.0"
}
}
apply plugin: "ws.gross.release-approve"