Search Gradle plugins

Version 2.0.1 (latest)

Created 16 March 2024.

Gradle plugin for uploading and downloading to AWS S3 buckets. Supports files, directories and downloads using path pattern matching. Provides callback hooks to attach script actions to file events. Provides native support for third-party providers such as LocalStack.

Using the plugins DSL:

plugins {
  id("com.mgd.core.gradle.s3") version "2.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.mgd.core:gradle-s3-plugin:2.0.1")
  }
}

apply(plugin = "com.mgd.core.gradle.s3")

Using the plugins DSL:

plugins {
  id "com.mgd.core.gradle.s3" version "2.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.mgd.core:gradle-s3-plugin:2.0.1"
  }
}

apply plugin: "com.mgd.core.gradle.s3"

Learn how to apply plugins to subprojects