org.starchartlabs.flare.managed-credentials
Owner: Ryan O'Meara
Provides a configurable DSL for defining sets of credentials used within the Gradle build
https://github.com/StarChart-Labs/flare-plugins
Sources: https://github.com/StarChart-Labs/flare-plugins
Version 0.2.1 (latest)
0.2.1
Created 15 September 2019.
Provides a configurable DSL for defining sets of credentials used within the Gradle build
Using the plugins DSL:
plugins {
id("org.starchartlabs.flare.managed-credentials") version "0.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.starchartlabs.flare:flare-plugins:0.2.1")
}
}
apply(plugin = "org.starchartlabs.flare.managed-credentials")
Using the plugins DSL:
plugins {
id "org.starchartlabs.flare.managed-credentials" version "0.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.starchartlabs.flare:flare-plugins:0.2.1"
}
}
apply plugin: "org.starchartlabs.flare.managed-credentials"