io.github.oheyadam.s3buildcache
所有者: Adam Ahmed
基于AWS S3的Gradle远程缓存
https://github.com/oheyadam/s3-gradle-build-cache
来源: https://github.com/oheyadam/s3-gradle-build-cache
使用插件DSL
plugins {
id("io.github.oheyadam.s3buildcache") version "1.0-beta05"
}
使用旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.oheyadam.s3buildcache:s3buildcache:1.0-beta05")
}
}
apply(plugin = "io.github.oheyadam.s3buildcache")
使用插件DSL
plugins {
id "io.github.oheyadam.s3buildcache" version "1.0-beta05"
}
使用旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.oheyadam.s3buildcache:s3buildcache:1.0-beta05"
}
}
apply plugin: "io.github.oheyadam.s3buildcache"