org.yello-labs.gradle-keyring
Owner: brandon maulding
Gradle plugin that applies a keyring property to projects/settings for an easy and secure way of managing secrets
https://github.com/yello-labs/gradle-keyring
Sources: https://github.com/yello-labs/gradle-keyring.git
Version 0.1.4 (latest)
0.1.4
Created 17 February 2022.
Gradle plugin that applies a keyring property to projects/settings for an easy and secure way of managing secrets
Using the plugins DSL:
plugins {
id("org.yello-labs.gradle-keyring") version "0.1.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.yello-labs:gradle-keyring:0.1.4")
}
}
apply(plugin = "org.yello-labs.gradle-keyring")
Using the plugins DSL:
plugins {
id "org.yello-labs.gradle-keyring" version "0.1.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.yello-labs:gradle-keyring:0.1.4"
}
}
apply plugin: "org.yello-labs.gradle-keyring"