androidx.build.gradle.s3buildcache
Owner: Aurimas Liutikas
Gradle remote build cache backed by AWS S3
https://github.com/androidx/gcp-gradle-build-cache
Sources: https://github.com/androidx/gcp-gradle-build-cache
Version 1.0.0-alpha04
1.0.0-alpha04
Created 22 December 2023.
- Performance optimization for pulling large remote cache entries, see
https://github.com/androidx/gcp-gradle-build-cache/pull/40
Using the plugins DSL:
plugins {
id("androidx.build.gradle.s3buildcache") version "1.0.0-alpha04"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("androidx.build.gradle.s3buildcache:s3buildcache:1.0.0-alpha04")
}
}
apply(plugin = "androidx.build.gradle.s3buildcache")
Using the plugins DSL:
plugins {
id "androidx.build.gradle.s3buildcache" version "1.0.0-alpha04"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "androidx.build.gradle.s3buildcache:s3buildcache:1.0.0-alpha04"
}
}
apply plugin: "androidx.build.gradle.s3buildcache"