io.perezalcolea.gcs-build-cache
Owner: Roberto Pérez Alcolea
Google Cloud Storage Gradle build cache implementation
https://github.com/rpalcolea/gradle-gcs-build-cache
Sources: https://github.com/rpalcolea/gradle-gcs-build-cache
Version 0.1.0 (latest)
0.1.0
Created 25 June 2018.
Google Cloud Storage Gradle build cache implementation
Using the plugins DSL:
plugins {
id("io.perezalcolea.gcs-build-cache") version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.io.perezalcolea.gradle:gradle-gcs-build-cache:0.1.0")
}
}
apply(plugin = "io.perezalcolea.gcs-build-cache")
Using the plugins DSL:
plugins {
id "io.perezalcolea.gcs-build-cache" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.io.perezalcolea.gradle:gradle-gcs-build-cache:0.1.0"
}
}
apply plugin: "io.perezalcolea.gcs-build-cache"