Search Gradle plugins

Version 1.0.0-rc.5

Created 24 November 2021.

Wooga Gradle plugin to fetch secret values

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "net.wooga.secrets"

Learn how to apply plugins to subprojects