Search Gradle plugins

Version 1.0.0-alpha02

Created 25 July 2023.

Gradle remote build cache backed by AWS S3

Using the plugins DSL:

plugins {
  id("androidx.build.gradle.s3buildcache") version "1.0.0-alpha02"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("androidx.build.gradle.s3buildcache:s3buildcache:1.0.0-alpha02")
  }
}

apply(plugin = "androidx.build.gradle.s3buildcache")

Using the plugins DSL:

plugins {
  id "androidx.build.gradle.s3buildcache" version "1.0.0-alpha02"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "androidx.build.gradle.s3buildcache:s3buildcache:1.0.0-alpha02"
  }
}

apply plugin: "androidx.build.gradle.s3buildcache"

Learn how to apply plugins to subprojects