Search Gradle plugins

Version 1.3.1

Created 12 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.3.1"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects