Search Gradle plugins

com.redpillanalytics.gradle-aws

A plugin for working with AWS. Initial functionality is for working with S3.

https://github.com/RedPillAnalytics/gradle-aws/

Sources: https://github.com/RedPillAnalytics/gradle-aws/

Version 0.1.0

0.1.0

Created 17 May 2019.

A plugin for working with AWS. Initial functionality is for working with S3.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.redpillanalytics.gradle-aws") version "0.1.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.redpillanalytics:gradle-aws:0.1.0")
      }
    }
    
    apply(plugin = "com.redpillanalytics.gradle-aws")
  • Applying plugins to all subprojects .