Search Gradle plugins

Version 1.0.0-alpha06 (latest)

1.0.0-alpha06

Created 24 May 2024.

- Move to targeting Java 17

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects