com.github.tagantroy.gradle-redis-build-cache
所有者: Ivan Balaksha
使用Redis存储构建工件的一个Gradle构建缓存实现。由于这是一个设置插件,以下构建脚本片段将无法正常工作。请查阅GitHub文档。
https://github.com/tagantroy/gradle-redis-build-cache
源代码: https://github.com/tagantroy/gradle-redis-build-cache.git
版本 0.1.0 (最新)
0.1.0
创建于2019年12月11日。
使用Redis存储构建工件的一个Gradle构建缓存实现。由于这是一个设置插件,以下构建脚本片段将无法正常工作。请查阅GitHub文档。
使用plugins DSL
plugins {
id("com.github.tagantroy.gradle-redis-build-cache") version "0.1.0"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.tagantroy:gradle-redis-build-cache:0.1.0")
}
}
apply(plugin = "com.github.tagantroy.gradle-redis-build-cache")
使用plugins DSL
plugins {
id "com.github.tagantroy.gradle-redis-build-cache" version "0.1.0"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.tagantroy:gradle-redis-build-cache:0.1.0"
}
}
apply plugin: "com.github.tagantroy.gradle-redis-build-cache"