com.ajmath.gradle-s3crets
Owner: Andrew Matheny
Pull gradle properties from s3. Especially useful for secrets
https://github.com/ajmath/gradle-s3crets
Sources: https://github.com/ajmath/gradle-s3crets.git
Version 1.3.0 (latest)
1.3.0
Created 28 January 2016.
Pull gradle properties from s3. Especially useful for secrets
Using the plugins DSL:
plugins {
id("com.ajmath.gradle-s3crets") version "1.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.ajmath:gradle-s3crets:1.3.0")
}
}
apply(plugin = "com.ajmath.gradle-s3crets")
Using the plugins DSL:
plugins {
id "com.ajmath.gradle-s3crets" version "1.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.ajmath:gradle-s3crets:1.3.0"
}
}
apply plugin: "com.ajmath.gradle-s3crets"