Search Gradle plugins

Version 0.0.1

0.0.1

Created 16 March 2020.

Use an S3-compatible object store as a Gradle build cache backend

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.atkinsondev.object-store-cache") version "0.0.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.atkinsondev.gradle:object-store-cache-plugin:0.0.1")
      }
    }
    
    apply(plugin = "com.atkinsondev.object-store-cache")
  • Applying plugins to all subprojects .