io.jumpco.open.gradle.s3
Owner:
Corneil du Plessis
S3 Gradle plugin supporting upload and download
https://open.jumpco.io/projects/s3-plugin.html
Sources: https://github.com/open-jumpco/s3-plugin
Version 1.2.3-SNAPSHOT
Created 17 April 2021.
S3 Gradle plugin supporting upload and download
Add this plugin to your build using the plugins DSL:
plugins {
id("io.jumpco.open.gradle.s3") version "1.2.3-SNAPSHOT"
}
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("io.jumpco.open.gradle.s3:io.jumpco.open.gradle.s3.gradle.plugin:1.2.3-SNAPSHOT") }
It can then be applied in the precompiled script plugin:plugins { id("io.jumpco.open.gradle.s3") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.jumpco.open.gradle.s3:io.jumpco.open.gradle.s3.gradle.plugin:1.2.3-SNAPSHOT") } } apply(plugin = "io.jumpco.open.gradle.s3")
- Applying plugins to all subprojects .