space.s3-build-cache
Owner: Mikhail Krupitskiy
An AWS S3 build cache implementation (Space fork)
https://jetbrains.team/p/crl/code/space-gradle-s3-build-cache-fork
Sources: https://git.jetbrains.team/space-gradle-s3-build-cache-fork.git
Version 0.9.0 (latest)
0.9.0
Created 23 March 2020.
An AWS S3 build cache implementation (Space fork)
Using the plugins DSL:
plugins {
id("space.s3-build-cache") version "0.9.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.jetbrains.space:s3-build-cache:0.9.0")
}
}
apply(plugin = "space.s3-build-cache")
Using the plugins DSL:
plugins {
id "space.s3-build-cache" version "0.9.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.jetbrains.space:s3-build-cache:0.9.0"
}
}
apply plugin: "space.s3-build-cache"