com.github.burrunan.s3-build-cache
Owner: Vladimir Sitnikov
An AWS S3 build cache implementation
https://github.com/burrunan/gradle-s3-build-cache
Sources: https://github.com/burrunan/gradle-s3-build-cache
Version 1.0.0-SNAPSHOT
1.0.0-SNAPSHOT
Created 24 July 2020.
An AWS S3 build cache implementation
Using the plugins DSL:
plugins {
id("com.github.burrunan.s3-build-cache") version "1.0.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.burrunan.s3cache:s3-build-cache:1.0.0-SNAPSHOT")
}
}
apply(plugin = "com.github.burrunan.s3-build-cache")
Using the plugins DSL:
plugins {
id "com.github.burrunan.s3-build-cache" version "1.0.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.burrunan.s3cache:s3-build-cache:1.0.0-SNAPSHOT"
}
}
apply plugin: "com.github.burrunan.s3-build-cache"