Search Gradle plugins

com.yantranet.java-s3

A simple light weight Gradle plugin for Java project to upload files to AWS S3.

https://github.com/vishnuganta22/gradle-android-s3

Sources: https://github.com/vishnuganta22/gradle-android-s3

Version 1.1.2 (latest)

Created 08 April 2020.

A simple light weight Gradle plugin for Java project to upload files to AWS S3.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.yantranet.java-s3") version "1.1.2"
}

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.yantranet.java-s3:com.yantranet.java-s3.gradle.plugin:1.1.2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.yantranet.java-s3")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.yantranet.java-s3:com.yantranet.java-s3.gradle.plugin:1.1.2")
      }
    }
    
    apply(plugin = "com.yantranet.java-s3")
  • Applying plugins to all subprojects .