Search Gradle plugins

Version 0.0.2 (latest)

Created 12 November 2019.

An AWS S3 build cache implementation (using AWS SDK v2)

Using the plugins DSL:

plugins {
  id("egor-n.s3-build-cache") version "0.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.egor-n.s3-build-cache:s3-build-cache:0.0.2")
  }
}

apply(plugin = "egor-n.s3-build-cache")

Using the plugins DSL:

plugins {
  id "egor-n.s3-build-cache" version "0.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.egor-n.s3-build-cache:s3-build-cache:0.0.2"
  }
}

apply plugin: "egor-n.s3-build-cache"

Learn how to apply plugins to subprojects