Search Gradle plugins

Version 0.1.0 (latest)

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"

Learn how to apply plugins to subprojects