Search Gradle plugins

io.errorlab.gradle.vault

Simple plugin that lets you read secret from vault in your gradle tasks

https://github.com/kiddouk/gradle-vault

Sources: https://github.com/kiddouk/gradle-vault

Version 0.1.0 (latest)

0.1.0

Created 20 August 2016.

This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact Simple plugin that lets you read secret from vault in your gradle tasks

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.errorlab.gradle.vault") version "0.1.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.io.errorlab.gradle.vault:vault:0.1.0")
      }
    }
    
    apply(plugin = "io.errorlab.gradle.vault")
  • Applying plugins to all subprojects .