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
Version 1.8.2 (latest)
1.8.2
Created 14 June 2024.
An AWS S3 build cache implementation
Using the plugins DSL:
plugins {
id("com.github.burrunan.s3-build-cache") version "1.8.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.burrunan.s3cache:s3-build-cache:1.8.2")
}
}
apply(plugin = "com.github.burrunan.s3-build-cache")
Using the plugins DSL:
plugins {
id "com.github.burrunan.s3-build-cache" version "1.8.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.burrunan.s3cache:s3-build-cache:1.8.2"
}
}
apply plugin: "com.github.burrunan.s3-build-cache"