Search Gradle plugins

Version 1.3.4

Created 20 October 2023.

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.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects