com.mgd.core.gradle.s3
Owner:
Peter Thomas
Lightweight S3 upload and download plugin
https://github.com/mygrocerydeals/gradle-s3-plugin/blob/master/README.md
Version 1.2.1 (latest)
Created 14 December 2022.
Lightweight S3 upload and download plugin
Using the plugins DSL:
plugins {
id("com.mgd.core.gradle.s3") version "1.2.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:1.2.1")
}
}
apply(plugin = "com.mgd.core.gradle.s3")
Using the plugins DSL:
plugins {
id "com.mgd.core.gradle.s3" version "1.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.mgd.core:gradle-s3-plugin:1.2.1"
}
}
apply plugin: "com.mgd.core.gradle.s3"