Maven dependency for Google Spreadsheet

Viewed 5042

Added the following dependency in pom.xml.

<dependency>
    <groupId>com.google.api.client</groupId>
    <artifactId>google-api-data-spreadsheet-v3</artifactId>
    <version>1.0.10-alpha</version>
</dependency>

But it doesn't seem to work. It doesn't contain any of the required classes. For example, SpreadsheetService, SpreadsheetFeed, SpreadsheetEntryetc.

Is there any other maven repository for Google Spreadsheet?

Also, in this documentation, they haven't mentioned any maven repository. So, do I have to manually download the required JARs and add them to my project?

1 Answers
Related