org.jetbrains.space.s3-build-cache
所有者: 米哈伊尔·克鲁皮茨基
AWS S3 构建缓存实现(Space 分支)
https://jetbrains.team/p/crl/code/space-gradle-s3-build-cache-fork
源代码:https://git.jetbrains.team/space-gradle-s3-build-cache-fork.git
使用 插件 DSL
plugins {
id("org.jetbrains.space.s3-build-cache") version "0.9.1.space"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.jetbrains.space:s3-build-cache:0.9.1.space")
}
}
apply(plugin = "org.jetbrains.space.s3-build-cache")
使用 插件 DSL
plugins {
id "org.jetbrains.space.s3-build-cache" version "0.9.1.space"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.jetbrains.space:s3-build-cache:0.9.1.space"
}
}
apply plugin: "org.jetbrains.space.s3-build-cache"