google-sheet-to-csv
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.vrerv.lib.googlecloud.sheets</groupId> <artifactId>google-sheet-to-csv</artifactId> <version>0.0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>com.vrerv.lib.googlecloud.sheets</groupId> <artifactId>google-sheet-to-csv</artifactId> <version>0.0.1</version> <packaging>pom</packaging> <name>google-sheet-to-csv</name> <description>Download Google sheet as CSV file using Google Sheets API</description> <url>https://github.com/vrerv/gradle-gsheet-download-plugin.git</url> <licenses> <license> <name>MIT</name> <url>https://opensource.org/license/mit</url> </license> </licenses> <developers> <developer> <id>vrerv</id> <name>Soonoh Jung</name> <organization>VReRV</organization> <organizationUrl>https://vrerv.com</organizationUrl> </developer> </developers> <scm> <connection>scm:git:https://github.com/vrerv/gradle-gsheet-download-plugin.git</connection> <developerConnection>scm:git:https://github.com/vrerv/gradle-gsheet-download-plugin.git</developerConnection> <url>https://github.com/vrerv/gradle-gsheet-download-plugin.git</url> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/vrerv/gradle-gsheet-download-plugin.git/issues</url> </issueManagement> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.13</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.opencsv</groupId> <artifactId>opencsv</artifactId> <version>5.9</version> <scope>runtime</scope> <exclusions> <exclusion> <groupId>org.apache.commons</groupId> <artifactId>commons-collections</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.google.api-client</groupId> <artifactId>google-api-client</artifactId> <version>1.35.2</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.google.auth</groupId> <artifactId>google-auth-library-oauth2-http</artifactId> <version>1.4.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.google.apis</groupId> <artifactId>google-api-services-sheets</artifactId> <version>v4-rev612-1.25.0</version> <scope>runtime</scope> </dependency> </dependencies> </project>