com.github.burrunan.s3-build-cache
Owner: Vladimir Sitnikov
An AWS S3 build cache implementation
https://github.com/burrunan/gradle-s3-build-cache
Sources: https://github.com/burrunan/gradle-s3-build-cache
Using the plugins DSL:
plugins {
id("com.github.burrunan.s3-build-cache") version "1.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.burrunan.s3cache:s3-build-cache:1.7")
}
}
apply(plugin = "com.github.burrunan.s3-build-cache")
Using the plugins DSL:
plugins {
id "com.github.burrunan.s3-build-cache" version "1.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.burrunan.s3cache:s3-build-cache:1.7"
}
}
apply plugin: "com.github.burrunan.s3-build-cache"