Search Gradle plugins

de.timmhirsens.azureblobcache.caching

This is a Gradle build cache implementation that uses the Azure Blob Storage as a Storage backend for cache objects.

https://github.com/fr1zle/azureblob-build-cache

Sources: https://github.com/fr1zle/azureblob-build-cache.git

Version 0.2.0 (latest)

Created 15 July 2020.

This is a Gradle build cache implementation that uses the Azure Blob Storage as a storage backend for cache objects.

Using the plugins DSL:

plugins {
  id("de.timmhirsens.azureblobcache.caching") version "0.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("de.timmhirsens.azureblobcache:azureblob-build-cache:0.2.0")
  }
}

apply(plugin = "de.timmhirsens.azureblobcache.caching")

Using the plugins DSL:

plugins {
  id "de.timmhirsens.azureblobcache.caching" version "0.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "de.timmhirsens.azureblobcache:azureblob-build-cache:0.2.0"
  }
}

apply plugin: "de.timmhirsens.azureblobcache.caching"

Learn how to apply plugins to subprojects