搜索 Gradle 插件

版本 0.9.1.space (最新版)

0.9.1.space

创建于 2020年3月23日。

AWS S3 构建缓存实现(Space 分支)

使用 插件 DSL

plugins {
  id("org.jetbrains.space.s3-build-cache") version "0.9.1.space"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.jetbrains.space:s3-build-cache:0.9.1.space")
  }
}

apply(plugin = "org.jetbrains.space.s3-build-cache")

使用 插件 DSL

plugins {
  id "org.jetbrains.space.s3-build-cache" version "0.9.1.space"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.jetbrains.space:s3-build-cache:0.9.1.space"
  }
}

apply plugin: "org.jetbrains.space.s3-build-cache"

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