nu.studer.credentials
Owner: Etienne Studer
Gradle plugin to store and access encrypted credentials for use in Gradle builds.
https://github.com/etiennestuder/gradle-credentials-plugin
Version 3.0 (latest)
3.0
Created 22 August 2021.
Gradle plugin to store and access encrypted credentials for use in Gradle builds.
Using the plugins DSL:
plugins {
id("nu.studer.credentials") version "3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("nu.studer:gradle-credentials-plugin:3.0")
}
}
apply(plugin = "nu.studer.credentials")
Using the plugins DSL:
plugins {
id "nu.studer.credentials" version "3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "nu.studer:gradle-credentials-plugin:3.0"
}
}
apply plugin: "nu.studer.credentials"