Search Gradle plugins

Version 0.9.1.space (latest)

Created 23 March 2020.

An AWS S3 build cache implementation (Space fork)

Using the plugins DSL:

plugins {
  id("org.jetbrains.space.s3-build-cache") version "0.9.1.space"
}

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.1.space")
  }
}

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

Using the plugins DSL:

plugins {
  id "org.jetbrains.space.s3-build-cache" version "0.9.1.space"
}

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.1.space"
  }
}

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

Learn how to apply plugins to subprojects