Search Gradle plugins

Version 1.0.5

1.0.5

Created 16 September 2021.

Plugin upload and download files from AWS S3 buckets

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.skhatri.s3") version "1.0.5"
}

See also:

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