Search Gradle plugins

com.fuseanalytics.gradle.s3

Lightweight S3 upload and download plugin that supports single and multiple file uploads/downloads

https://github.com/chubbard/gradle-s3-plugin/blob/master/README.md

Sources: https://github.com/chubbard/gradle-s3-plugin

Version 1.1.2

Created 04 May 2021.


Lightweight S3 upload and download plugin
that supports single and multiple file
uploads/downloads

Using the plugins DSL:

plugins {
  id("com.fuseanalytics.gradle.s3") version "1.1.2"
}

Using legacy plugin application:

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

apply(plugin = "com.fuseanalytics.gradle.s3")

Using the plugins DSL:

plugins {
  id "com.fuseanalytics.gradle.s3" version "1.1.2"
}

Using legacy plugin application:

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

apply plugin: "com.fuseanalytics.gradle.s3"

Learn how to apply plugins to subprojects