搜索Gradle插件

版本 1.8.2 (最新版)

1.8.2

创建于2024年6月14日。

一个AWS S3构建缓存实现

使用插件DSL

plugins {
  id("com.github.burrunan.s3-build-cache") version "1.8.2"
}

使用旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.burrunan.s3cache:s3-build-cache:1.8.2")
  }
}

apply(plugin = "com.github.burrunan.s3-build-cache")

使用插件DSL

plugins {
  id "com.github.burrunan.s3-build-cache" version "1.8.2"
}

使用旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.burrunan.s3cache:s3-build-cache:1.8.2"
  }
}

apply plugin: "com.github.burrunan.s3-build-cache"

学习如何将插件应用于子项目