Search Gradle plugins

Version 1.4.0 (latest)

Created 13 November 2022.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.atkinsondev.gradle:object-store-cache-plugin:1.4.0")
  }
}

apply(plugin = "com.atkinsondev.object-store-cache")

Using the plugins DSL:

plugins {
  id "com.atkinsondev.object-store-cache" version "1.4.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.atkinsondev.gradle:object-store-cache-plugin:1.4.0"
  }
}

apply plugin: "com.atkinsondev.object-store-cache"

Learn how to apply plugins to subprojects