Search Gradle plugins

Version 1.0.6

Created 08 July 2015.

Plugin to deploy to an S3 Yum repository

Using the plugins DSL:

plugins {
  id("com.bazaarvoice.s3repo") version "1.0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.bazaarvoice.gradle:s3repo-gradle-plugin:1.0.6")
  }
}

apply(plugin = "com.bazaarvoice.s3repo")

Using the plugins DSL:

plugins {
  id "com.bazaarvoice.s3repo" version "1.0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.bazaarvoice.gradle:s3repo-gradle-plugin:1.0.6"
  }
}

apply plugin: "com.bazaarvoice.s3repo"

Learn how to apply plugins to subprojects