Skip to content

Instantly share code, notes, and snippets.

@DazWilkin
Created September 22, 2017 19:24
Show Gist options
  • Save DazWilkin/740ba1bef9e9a75c878a4cad3697976d to your computer and use it in GitHub Desktop.
Save DazWilkin/740ba1bef9e9a75c878a4cad3697976d to your computer and use it in GitHub Desktop.
Medium:170922: Cloud Storage w/ Cloud Client Library for Java
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.google.dazwilkin</groupId>
<artifactId>cld</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>cld</name>
<url>http://maven.apache.org</url>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<!-- Google Cloud Core -->
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-core</artifactId>
<version>1.6.0</version>
</dependency>
<!-- Google Cloud Storage -->
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-storage</artifactId>
<version>1.6.0</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