com.vrerv.gradle.plugin.gsheet.download
Owner: VReRV
Download Google Sheet as CSV
https://github.com/vrerv/gradle-gsheet-download-plugin
Sources: https://github.com/vrerv/gradle-gsheet-download-plugin
Version 0.1.4 (latest)
Created 30 June 2024.
Download Google Sheet as CSV
Add this plugin to your build using the plugins DSL:
plugins {
id("com.vrerv.gradle.plugin.gsheet.download") version "0.1.4"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.vrerv.gradle.plugin.gsheet.download:com.vrerv.gradle.plugin.gsheet.download.gradle.plugin:0.1.4") }
It can then be applied in the precompiled script plugin:plugins { id("com.vrerv.gradle.plugin.gsheet.download") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.vrerv.gradle.plugin.gsheet.download:com.vrerv.gradle.plugin.gsheet.download.gradle.plugin:0.1.4") } } apply(plugin = "com.vrerv.gradle.plugin.gsheet.download")
- Applying plugins to all subprojects .