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.

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("de.timmhirsens.azureblobcache.caching:de.timmhirsens.azureblobcache.caching.gradle.plugin:0.2.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("de.timmhirsens.azureblobcache.caching")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("de.timmhirsens.azureblobcache.caching:de.timmhirsens.azureblobcache.caching.gradle.plugin:0.2.0")
      }
    }
    
    apply(plugin = "de.timmhirsens.azureblobcache.caching")
  • Applying plugins to all subprojects .