Search Gradle plugins

Version 0.1.4 (latest)

0.1.4

Created 30 June 2024.

Download Google Sheet as CSV

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects