Search Gradle plugins

Version 0.6.0

0.6.0

Created 29 November 2020.

Plugin for using GCP Cloud Storage as the backend for Gradle's build cache

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.curioswitch.gradle-gcloud-build-cache-plugin") version "0.6.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.curioswitch.curiostack:gradle-curiostack-plugin:0.6.0")
      }
    }
    
    apply(plugin = "org.curioswitch.gradle-gcloud-build-cache-plugin")
  • Applying plugins to all subprojects .