androidx.build.gradle.s3buildcache
所有者: Aurimas Liutikas
由 AWS S3 支持的 Gradle 远程构建缓存
https://github.com/androidx/gcp-gradle-build-cache
源代码: https://github.com/androidx/gcp-gradle-build-cache
使用 插件 DSL
plugins {
id("androidx.build.gradle.s3buildcache") version "1.0.0-alpha06"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("androidx.build.gradle.s3buildcache:s3buildcache:1.0.0-alpha06")
}
}
apply(plugin = "androidx.build.gradle.s3buildcache")
使用 插件 DSL
plugins {
id "androidx.build.gradle.s3buildcache" version "1.0.0-alpha06"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "androidx.build.gradle.s3buildcache:s3buildcache:1.0.0-alpha06"
}
}
apply plugin: "androidx.build.gradle.s3buildcache"