搜索 Gradle 插件

版本 2.0.1 (最新版)

2.0.1

创建于 2024 年 8 月 8 日。

Wooga Gradle 插件用于获取秘密值

使用 插件 DSL

plugins {
  id("net.wooga.secrets") version "2.0.1"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("net.wooga.gradle:secrets:2.0.1")
  }
}

apply(plugin = "net.wooga.secrets")

使用 插件 DSL

plugins {
  id "net.wooga.secrets" version "2.0.1"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "net.wooga.gradle:secrets:2.0.1"
  }
}

apply plugin: "net.wooga.secrets"

了解如何将插件应用于子项目