Search Gradle plugins

Version 0.9.0 (latest)

Created 23 March 2020.

An AWS S3 build cache implementation (Space fork)

Using the plugins DSL:

plugins {
  id("space.s3-build-cache") version "0.9.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.jetbrains.space:s3-build-cache:0.9.0")
  }
}

apply(plugin = "space.s3-build-cache")

Using the plugins DSL:

plugins {
  id "space.s3-build-cache" version "0.9.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.jetbrains.space:s3-build-cache:0.9.0"
  }
}

apply plugin: "space.s3-build-cache"

Learn how to apply plugins to subprojects