Search Gradle plugins

Version 2.0.1 (latest)

2.0.1

Created 08 August 2024.

Wooga Gradle plugin to fetch secret values

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "net.wooga.secrets"

Learn how to apply plugins to subprojects