com.fuseanalytics.gradle.s3
Owner:
Charlie Hubbard
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.2.3 (latest)
Created 03 November 2022.
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.2.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.fuseanalytics:gradle-s3-plugin:1.2.3")
}
}
apply(plugin = "com.fuseanalytics.gradle.s3")
Using the plugins DSL:
plugins {
id "com.fuseanalytics.gradle.s3" version "1.2.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.fuseanalytics:gradle-s3-plugin:1.2.3"
}
}
apply plugin: "com.fuseanalytics.gradle.s3"