Search Gradle plugins

com.monochromeroad.s3sync

The gradle task for synchronizing a local directory with a AWS S3 bucket.

https://github.com/literalice/gradle-aws-s3-sync

Version 0.10 (latest)

Created 26 December 2015.

No version description available.

Using the plugins DSL:

plugins {
  id("com.monochromeroad.s3sync") version "0.10"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.monochromeroad.gradle-plugins:gradle-aws-s3-sync:0.10")
  }
}

apply(plugin = "com.monochromeroad.s3sync")

Using the plugins DSL:

plugins {
  id "com.monochromeroad.s3sync" version "0.10"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.monochromeroad.gradle-plugins:gradle-aws-s3-sync:0.10"
  }
}

apply plugin: "com.monochromeroad.s3sync"

Learn how to apply plugins to subprojects