搜索 Gradle 插件

ws.gross.release-approve

所有者: Konstantin Gribov

当 `nebula.release` 插件存在时,此 Gradle 插件添加对 rc/final 任务的审批。在非交互式环境中,使用 `-Prelease.approve=true`。

https://github.com/grossws/private-repo

源代码: https://github.com/grossws/private-repo.git

版本 0.18.0-rc.6 (最新版)

0.18.0-rc.6

创建于 2023年7月6日。

当 `nebula.release` 插件存在时,此 Gradle 插件添加对 rc/final 任务的审批。在非交互式环境中,使用 `-Prelease.approve=true`。

使用 插件 DSL

plugins {
  id("ws.gross.release-approve") version "0.18.0-rc.6"
}

使用 旧插件应用

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

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

使用 插件 DSL

plugins {
  id "ws.gross.release-approve" version "0.18.0-rc.6"
}

使用 旧插件应用

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

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

学习如何将插件应用于子项目