搜索 Gradle 插件

net.idlestate.gradle-gcs-build-cache

所有者: Thorsten Ehlers

使用 Google 云存储 (GCS) 存储构建工件的一个 Gradle 构建缓存实现。由于这是一个设置插件,下面的构建脚本片段将不会工作。请参阅 Github 上的文档。

https://github.com/tehlers/gradle-gcs-build-cache

源:https://github.com/tehlers/gradle-gcs-build-cache.git

版本 1.3.0(最新版本)

1.3.0

创建于 2024 年 2 月 22 日。

使用 Google 云存储 (GCS) 存储构建工件的一个 Gradle 构建缓存实现。由于这是一个设置插件,下面的构建脚本片段将不会工作。请参阅 Github 上的文档。

使用 plugins DSL

plugins {
  id("net.idlestate.gradle-gcs-build-cache") version "1.3.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("net.idlestate:gradle-gcs-build-cache:1.3.0")
  }
}

apply(plugin = "net.idlestate.gradle-gcs-build-cache")

使用 plugins DSL

plugins {
  id "net.idlestate.gradle-gcs-build-cache" version "1.3.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "net.idlestate:gradle-gcs-build-cache:1.3.0"
  }
}

apply plugin: "net.idlestate.gradle-gcs-build-cache"

学习如何应用到子项目中