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.18.0-rc.6 (latest)
0.18.0-rc.6
Created 06 July 2023.
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.18.0-rc.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("ws.gross.gradle:private-repo:0.18.0-rc.6")
}
}
apply(plugin = "ws.gross.release-approve")
Using the plugins DSL:
plugins {
id "ws.gross.release-approve" version "0.18.0-rc.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "ws.gross.gradle:private-repo:0.18.0-rc.6"
}
}
apply plugin: "ws.gross.release-approve"