egor-n.s3-build-cache
Owner: Egor Neliuba
An AWS S3 build cache implementation (using AWS SDK v2)
https://github.com/egor-n/gradle-s3-build-cache
Sources: https://github.com/egor-n/gradle-s3-build-cache
Version 0.0.2 (latest)
0.0.2
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"