com.atkinsondev.object-store-cache
Owner: Craig Atkinson
Use an S3-compatible object store as a Gradle build cache backend
https://github.com/craigatk/object-store-cache-plugin
Sources: https://github.com/craigatk/object-store-gradle-cache
Version 1.4.0 (latest)
1.4.0
Created 13 November 2022.
Use an S3-compatible object store as the backend for a Gradle remote build cache
Using the plugins DSL:
plugins {
id("com.atkinsondev.object-store-cache") version "1.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.atkinsondev.gradle:object-store-cache-plugin:1.4.0")
}
}
apply(plugin = "com.atkinsondev.object-store-cache")
Using the plugins DSL:
plugins {
id "com.atkinsondev.object-store-cache" version "1.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.atkinsondev.gradle:object-store-cache-plugin:1.4.0"
}
}
apply plugin: "com.atkinsondev.object-store-cache"