Search Gradle plugins

Version 1.0.0-rc.6

Created 03 May 2022.

Wooga Gradle plugin to fetch secret values

Using the plugins DSL:

plugins {
  id("net.wooga.secrets") version "1.0.0-rc.6"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "net.wooga.secrets" version "1.0.0-rc.6"
}

Using legacy plugin application:

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

apply plugin: "net.wooga.secrets"

Learn how to apply plugins to subprojects