Search Gradle plugins

net.hubalek.gradle.s3privaterepo

Allows to add Amazon S3 private repo just according system properties or environment variables.

https://github.com/thubalek/private-s3-repo-gradle-plugin

Sources: https://github.com/thubalek

Version 0.0.6 (latest)

Created 29 September 2020.

Allows to add Amazon S3 private repo just according system properties or environment variables.

Add this plugin to your build using the plugins DSL:

plugins {
  id("net.hubalek.gradle.s3privaterepo") version "0.0.6"
}

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