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

Created 25 February 2022.

Gradle plugin which adds approve for rc/final tasks when `nebula.release` plugin present. Use `-Prelease.approve=true` in non-interactive context.

Add this plugin to your build using the plugins DSL:

plugins {
  id("ws.gross.release-approve") version "0.14.3"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("ws.gross.release-approve:ws.gross.release-approve.gradle.plugin:0.14.3")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("ws.gross.release-approve")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("ws.gross.release-approve:ws.gross.release-approve.gradle.plugin:0.14.3")
      }
    }
    
    apply(plugin = "ws.gross.release-approve")
  • Applying plugins to all subprojects .