搜索Gradle插件

版本 0.1.4 (最新版)

0.1.4

创建日期:2024年6月30日。

将Google表格下载为CSV

使用插件DSL

plugins {
  id("com.vrerv.gradle.plugin.gsheet.download") version "0.1.4"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.vrerv.gradle.plugin:plugin:0.1.4")
  }
}

apply(plugin = "com.vrerv.gradle.plugin.gsheet.download")

使用插件DSL

plugins {
  id "com.vrerv.gradle.plugin.gsheet.download" version "0.1.4"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.vrerv.gradle.plugin:plugin:0.1.4"
  }
}

apply plugin: "com.vrerv.gradle.plugin.gsheet.download"

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