Search Gradle plugins

com.github.tagantroy.gradle-redis-build-cache

A Gradle build cache implementation that uses Redis to store the build artifacts. Since this is a settings plugin the build script snippets below won't work. Please consult the documentation at Github.

https://github.com/tagantroy/gradle-redis-build-cache

Sources: https://github.com/tagantroy/gradle-redis-build-cache.git

Version 0.1.0 (latest)

Created 11 December 2019.

A Gradle build cache implementation that uses Redis to store the build artifacts. Since this is a settings plugin the build script snippets below won't work. Please consult the documentation at Github.

Using the plugins DSL:

plugins {
  id("com.github.tagantroy.gradle-redis-build-cache") version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.tagantroy:gradle-redis-build-cache:0.1.0")
  }
}

apply(plugin = "com.github.tagantroy.gradle-redis-build-cache")

Using the plugins DSL:

plugins {
  id "com.github.tagantroy.gradle-redis-build-cache" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.tagantroy:gradle-redis-build-cache:0.1.0"
  }
}

apply plugin: "com.github.tagantroy.gradle-redis-build-cache"

Learn how to apply plugins to subprojects