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.

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.monochromeroad.s3sync:com.monochromeroad.s3sync.gradle.plugin:0.10")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.monochromeroad.s3sync")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.monochromeroad.s3sync:com.monochromeroad.s3sync.gradle.plugin:0.10")
      }
    }
    
    apply(plugin = "com.monochromeroad.s3sync")
  • Applying plugins to all subprojects .