me.okonecny.gradle-keyring
Owner:
Ondřej Konečný
Store/load your secrets to/from your system's keyring.
https://github.com/konecny-ondrej/gradle-keyring
Sources: https://github.com/konecny-ondrej/gradle-keyring.git
Version 0.2 (latest)
Created 29 April 2024.
Store/load your secrets to/from your system's keyring.
Add this plugin to your build using the plugins DSL:
plugins {
id("me.okonecny.gradle-keyring") version "0.2"
}
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("me.okonecny.gradle-keyring:me.okonecny.gradle-keyring.gradle.plugin:0.2") }
It can then be applied in the precompiled script plugin:plugins { id("me.okonecny.gradle-keyring") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("me.okonecny.gradle-keyring:me.okonecny.gradle-keyring.gradle.plugin:0.2") } } apply(plugin = "me.okonecny.gradle-keyring")
- Applying plugins to all subprojects .