Download appengine-gcs-client-0.6.jar file

Introduction

You can download appengine-gcs-client-0.6.jar in this page.

License

The Apache Software License, Version 2.0

Type List

appengine-gcs-client-0.6.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.google.appengine.tools/appengine-gcs-client/pom.properties
META-INF/maven/com.google.appengine.tools/appengine-gcs-client/pom.xml
com.google.appengine.tools.cloudstorage.BadRangeException.class
com.google.appengine.tools.cloudstorage.ExceptionHandler.class
com.google.appengine.tools.cloudstorage.GcsFileMetadata.class
com.google.appengine.tools.cloudstorage.GcsFileOptions.class
com.google.appengine.tools.cloudstorage.GcsFilename.class
com.google.appengine.tools.cloudstorage.GcsInputChannel.class
com.google.appengine.tools.cloudstorage.GcsOutputChannel.class
com.google.appengine.tools.cloudstorage.GcsOutputChannelImpl.class
com.google.appengine.tools.cloudstorage.GcsService.class
com.google.appengine.tools.cloudstorage.GcsServiceFactory.class
com.google.appengine.tools.cloudstorage.GcsServiceImpl.class
com.google.appengine.tools.cloudstorage.GcsServiceOptions.class
com.google.appengine.tools.cloudstorage.ListItem.class
com.google.appengine.tools.cloudstorage.ListOptions.class
com.google.appengine.tools.cloudstorage.ListResult.class
com.google.appengine.tools.cloudstorage.NonRetriableException.class
com.google.appengine.tools.cloudstorage.PrefetchingGcsInputChannelImpl.class
com.google.appengine.tools.cloudstorage.RawGcsService.class
com.google.appengine.tools.cloudstorage.RetriesExhaustedException.class
com.google.appengine.tools.cloudstorage.RetryHelper.class
com.google.appengine.tools.cloudstorage.RetryHelperException.class
com.google.appengine.tools.cloudstorage.RetryInterruptedException.class
com.google.appengine.tools.cloudstorage.RetryParams.class
com.google.appengine.tools.cloudstorage.SimpleGcsInputChannelImpl.class
com.google.appengine.tools.cloudstorage.dev.LocalRawGcsService.class
com.google.appengine.tools.cloudstorage.dev.LocalRawGcsServiceFactory.class
com.google.appengine.tools.cloudstorage.oauth.AbstractOAuthURLFetchService.class
com.google.appengine.tools.cloudstorage.oauth.AccessTokenProvider.class
com.google.appengine.tools.cloudstorage.oauth.AppIdentityAccessTokenProvider.class
com.google.appengine.tools.cloudstorage.oauth.AppIdentityOAuthURLFetchService.class
com.google.appengine.tools.cloudstorage.oauth.HttpErrorHandler.class
com.google.appengine.tools.cloudstorage.oauth.OAuthURLFetchService.class
com.google.appengine.tools.cloudstorage.oauth.OauthRawGcsService.class
com.google.appengine.tools.cloudstorage.oauth.OauthRawGcsServiceFactory.class
com.google.appengine.tools.cloudstorage.oauth.PathTrie.class
com.google.appengine.tools.cloudstorage.oauth.URLFetchUtils.class
com.google.appengine.tools.cloudstorage.oauth.XmlHandler.class

Pom

appengine-gcs-client-0.6.pom file content.

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.google.appengine.tools</groupId>
  <artifactId>appengine-gcs-client</artifactId>
  <name>App Engine Client for Google Cloud Storage</name>
  <url>https://github.com/GoogleCloudPlatform/appengine-gcs-client/</url>
  <organization>
    <name>Google</name>
  </organization>
  <version>0.6</version>
  <packaging>jar</packaging>
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0</url>
    </license>
  </licenses>
  <properties>
    <appengine.target.version>[1.8.9,2.0)</appengine.target.version>
  </properties>
  <prerequisites>
      <maven>3.1.0</maven>
  </prerequisites>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.5.1</version>
        <configuration>
          <source>1.7</source>
          <target>1.7</target>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <version>2.6</version>
        <configuration>
          <archive>
            <manifest>
              <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
              <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
            </manifest>
          </archive>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <!-- Compile/Runtime Dependencies -->
    <dependency>
      <groupId>com.google.appengine</groupId>
      <artifactId>appengine-api-1.0-sdk</artifactId>
      <version>${appengine.target.version}</version>
    </dependency>
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava</artifactId>
      <version>19.0-rc1</version>
    </dependency>
    <dependency>
      <groupId>joda-time</groupId>
      <artifactId>joda-time</artifactId>
      <version>2.3</version>
    </dependency>
    <dependency>
      <groupId>com.google.apis</groupId>
      <artifactId>google-api-services-storage</artifactId>
      <version>v1-rev68-1.21.0</version>
      <exclusions>
        <exclusion>
          <groupId>com.google.guava</groupId>
          <artifactId>guava-jdk5</artifactId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>com.google.api-client</groupId>
      <artifactId>google-api-client-appengine</artifactId>
      <version>[1.19,2.0)</version>
    </dependency>
    <dependency>
      <groupId>com.google.http-client</groupId>
      <artifactId>google-http-client</artifactId>
      <version>[1.19.0,2.0)</version>
    </dependency>
    <dependency>
      <groupId>com.google.http-client</groupId>
      <artifactId>google-http-client-jackson2</artifactId>
      <version>[1.19,2.0)</version>
    </dependency>

    <!-- Test Dependencies -->
    <dependency>
      <groupId>com.google.appengine</groupId>
      <artifactId>appengine-testing</artifactId>
      <version>${appengine.target.version}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.google.appengine</groupId>
      <artifactId>appengine-api-stubs</artifactId>
      <version>${appengine.target.version}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
       <artifactId>mockito-all</artifactId>
       <version>1.8.4</version>
       <scope>test</scope>
    </dependency>
  </dependencies>
</project>

POM Entry

<dependency>
   <groupId>com.google.appengine.tools</groupId>
   <artifactId>appengine-gcs-client</artifactId>
   <version>0.6</version>
</dependency>

Download

If you think the following appengine-gcs-client-0.6.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download appengine-gcs-client-0.6.jar file




PreviousNext

Related