Downloading the GCS Client Library
The GCS client library is a client-side library that is not dependent on any specific version of App Engine for production use. If you want to test your code using the App Engine development server , you must use the development server from the App Engine SDK 1.8.1 or greater.
Downloading the GCS Client Library
The download varies slightly depending on whether you use Maven, Ivy, or want to download the jar files manually. Select from the following:
Maven
Maven users should include the following in their application's pom.xml file:
<dependency>
<groupId>com.google.appengine.tools</groupId>
<artifactId>appengine-gcs-client</artifactId>
<version>RELEASE</version>
</dependency>
Ivy
Ivy users should include the following in their application's ivy.xml file:
<dependency org="com.google.appengine.tools"
name="appengine-gcs-client"
rev="latest.integration" />
Download Jars Manually
To download directly use the following repository link and download the latest class, source, and JavaDoc Jar files:
In additional to the class files Jar you download, you will also need to include in your application the following dependencies:
- Guava Library
- Joda-Time Library
- Google API Client
- Google API Client App Engine
- Google HTTP Client
- Cloud Storage API Client Library
If you use Maven or Ivy, the dependencies are automatically retrieved for you.
SVN Checkout
To check out the source over HTTP:
svn checkout http://appengine-gcs-client.googlecode.com/svn/trunk/ appengine-gcs-client-read-only