搜索 Gradle 插件

de.timmhirsens.azureblobcache.caching

所有者: Timm Hirsens

这是一个使用 Azure Blob Storage 作为缓存对象后端的 Gradle 构建缓存实现。

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

源代码: https://github.com/fr1zle/azureblob-build-cache.git

版本 0.2.0 (最新版)

0.2.0

创建于 2020年7月15日。

这是使用 Azure Blob Storage 作为缓存对象存储后端的 Gradle 构建缓存实现。

使用 插件 DSL

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

使用 旧版插件应用

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

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

使用 插件 DSL

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

使用 旧版插件应用

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

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

了解如何将插件应用到子项目中