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
Sources: https://github.com/mygrocerydeals/gradle-s3-plugin
Version 2.1.0
Created 16 January 2025.
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.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.mgd.core.gradle.s3") version "2.1.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.mgd.core.gradle.s3:com.mgd.core.gradle.s3.gradle.plugin:2.1.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.mgd.core.gradle.s3") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.mgd.core.gradle.s3:com.mgd.core.gradle.s3.gradle.plugin:2.1.0") } } apply(plugin = "com.mgd.core.gradle.s3")
- Applying plugins to all subprojects .