Skip to content

Instantly share code, notes, and snippets.

@DazWilkin
Created September 21, 2017 23:17
Show Gist options
  • Save DazWilkin/01849987cbd6cfb6068719151c20ac2a to your computer and use it in GitHub Desktop.
Save DazWilkin/01849987cbd6cfb6068719151c20ac2a to your computer and use it in GitHub Desktop.
Medium:170921: Cloud Storage w/ API Client Library for Java
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.google.dazwilkin</groupId>
<artifactId>api</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>api</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<!-- API Client Library -->
<dependency>
<groupId>com.google.api-client</groupId>
<artifactId>google-api-client</artifactId>
<version>1.22.0</version>
</dependency>
<!-- API Client Library: Storage -->
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-storage</artifactId>
<version>v1-rev111-1.18.0-rc</version>
</dependency>
<!-- Application Default Credentials -->
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-oauth2</artifactId>
<version>v2-rev129-1.22.0</version>
</dependency>
</dependencies>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment