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)
Created 17 February 2022.
Gradle plugin that applies a keyring property to projects/settings for an easy and secure way of managing secrets
Add this plugin to your build using the plugins DSL:
plugins {
id("org.yello-labs.gradle-keyring") version "0.1.4"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("org.yello-labs.gradle-keyring:org.yello-labs.gradle-keyring.gradle.plugin:0.1.4") }
It can then be applied in the precompiled script plugin:plugins { id("org.yello-labs.gradle-keyring") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.yello-labs.gradle-keyring:org.yello-labs.gradle-keyring.gradle.plugin:0.1.4") } } apply(plugin = "org.yello-labs.gradle-keyring")
- Applying plugins to all subprojects .