net.idlestate.gradle-redis-build-cache
Owner:
Thorsten Ehlers
A Gradle build cache implementation that uses Redis to store the build artifacts
https://github.com/tehlers/gradle-redis-build-cache
Version 1.1.0
Created 19 January 2018.
A Gradle build cache implementation that uses Redis to store the build artifacts
Using the plugins DSL:
plugins {
id("net.idlestate.gradle-redis-build-cache") version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.net.idlestate:gradle-redis-build-cache:1.1.0")
}
}
apply(plugin = "net.idlestate.gradle-redis-build-cache")
Using the plugins DSL:
plugins {
id "net.idlestate.gradle-redis-build-cache" version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.net.idlestate:gradle-redis-build-cache:1.1.0"
}
}
apply plugin: "net.idlestate.gradle-redis-build-cache"