Search Gradle plugins

Version 1.5

Created 05 October 2022.

An AWS S3 build cache implementation

Using the plugins DSL:

plugins {
  id("com.github.burrunan.s3-build-cache") version "1.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.burrunan.s3cache:s3-build-cache:1.5")
  }
}

apply(plugin = "com.github.burrunan.s3-build-cache")

Using the plugins DSL:

plugins {
  id "com.github.burrunan.s3-build-cache" version "1.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.burrunan.s3cache:s3-build-cache:1.5"
  }
}

apply plugin: "com.github.burrunan.s3-build-cache"

Learn how to apply plugins to subprojects