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-alpha06 (latest)
1.0.0-alpha06
Created 24 May 2024.
- Move to targeting Java 17
Using the plugins DSL:
plugins {
id("androidx.build.gradle.s3buildcache") version "1.0.0-alpha06"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("androidx.build.gradle.s3buildcache:s3buildcache:1.0.0-alpha06")
}
}
apply(plugin = "androidx.build.gradle.s3buildcache")
Using the plugins DSL:
plugins {
id "androidx.build.gradle.s3buildcache" version "1.0.0-alpha06"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "androidx.build.gradle.s3buildcache:s3buildcache:1.0.0-alpha06"
}
}
apply plugin: "androidx.build.gradle.s3buildcache"