搜索 Gradle 插件

com.monochromeroad.s3sync

该 gradle 任务用于将本地目录与 AWS S3 存储桶同步。

https://github.com/literalice/gradle-aws-s3-sync

版本 0.10(最新版)

0.10

创建于 2015 年 12 月 26 日。

没有可用版本描述。

使用 plugins DSL

plugins {
  id("com.monochromeroad.s3sync") version "0.10"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.monochromeroad.gradle-plugins:gradle-aws-s3-sync:0.10")
  }
}

apply(plugin = "com.monochromeroad.s3sync")

使用 plugins DSL

plugins {
  id "com.monochromeroad.s3sync" version "0.10"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.monochromeroad.gradle-plugins:gradle-aws-s3-sync:0.10"
  }
}

apply plugin: "com.monochromeroad.s3sync"

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