io.errorlab.gradle.vault
Owner: Sebastien Requiem
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.0.5
0.0.5
Created 20 August 2016.
Simple plugin that lets you read secret from vault in your gradle tasks
Using the plugins DSL:
plugins {
id("io.errorlab.gradle.vault") version "0.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.io.errorlab.gradle.vault:vault:0.0.5")
}
}
apply(plugin = "io.errorlab.gradle.vault")
Using the plugins DSL:
plugins {
id "io.errorlab.gradle.vault" version "0.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.io.errorlab.gradle.vault:vault:0.0.5"
}
}
apply plugin: "io.errorlab.gradle.vault"