Search Gradle plugins

Version 0.2.1

Created 29 June 2015.

Pull gradle properties from s3. Especially useful for secrets

Using the plugins DSL:

plugins {
  id("com.ajmath.gradle-s3crets") version "0.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.ajmath:gradle-s3crets:0.2.1")
  }
}

apply(plugin = "com.ajmath.gradle-s3crets")

Using the plugins DSL:

plugins {
  id "com.ajmath.gradle-s3crets" version "0.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.ajmath:gradle-s3crets:0.2.1"
  }
}

apply plugin: "com.ajmath.gradle-s3crets"

Learn how to apply plugins to subprojects