com.github.kohii.s3-gradle-build-cache-plugin
Owner: Kohei Ishikawa
A Gradle build cache that uses AWS S3 to store build artifacts
https://github.com/kohii/s3-gradle-build-cache-plugin
Sources: https://github.com/kohii/s3-gradle-build-cache-plugin
Version 0.1.0 (latest)
0.1.0
Created 26 October 2019.
A Gradle build cache that uses AWS S3 to store build artifacts
Using the plugins DSL:
plugins {
id("com.github.kohii.s3-gradle-build-cache-plugin") version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.kohii:s3-gradle-build-cache-plugin:0.1.0")
}
}
apply(plugin = "com.github.kohii.s3-gradle-build-cache-plugin")
Using the plugins DSL:
plugins {
id "com.github.kohii.s3-gradle-build-cache-plugin" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.kohii:s3-gradle-build-cache-plugin:0.1.0"
}
}
apply plugin: "com.github.kohii.s3-gradle-build-cache-plugin"