Search Gradle plugins

ws.gross.release-approve

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.12.1

Created 07 October 2021.

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.12.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("ws.gross.gradle:private-repo:0.12.1")
  }
}

apply(plugin = "ws.gross.release-approve")

Using the plugins DSL:

plugins {
  id "ws.gross.release-approve" version "0.12.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "ws.gross.gradle:private-repo:0.12.1"
  }
}

apply plugin: "ws.gross.release-approve"

Learn how to apply plugins to subprojects