You can download gcsio-1.4.5.jar in this page.
Apache License
gcsio-1.4.5.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/com.google.cloud.bigdataoss/gcsio/pom.properties META-INF/maven/com.google.cloud.bigdataoss/gcsio/pom.xml com.google.cloud.hadoop.gcsio.BatchHelper.class com.google.cloud.hadoop.gcsio.CacheEntry.class com.google.cloud.hadoop.gcsio.CacheSupplementedGoogleCloudStorage.class com.google.cloud.hadoop.gcsio.CachedBucket.class com.google.cloud.hadoop.gcsio.CreateBucketOptions.class com.google.cloud.hadoop.gcsio.CreateFileOptions.class com.google.cloud.hadoop.gcsio.CreateObjectOptions.class com.google.cloud.hadoop.gcsio.DirectoryListCache.class com.google.cloud.hadoop.gcsio.FileInfo.class com.google.cloud.hadoop.gcsio.FileSystemBackedDirectoryListCache.class com.google.cloud.hadoop.gcsio.GoogleCloudStorage.class com.google.cloud.hadoop.gcsio.GoogleCloudStorageExceptions.class com.google.cloud.hadoop.gcsio.GoogleCloudStorageFileSystem.class com.google.cloud.hadoop.gcsio.GoogleCloudStorageFileSystemOptions.class com.google.cloud.hadoop.gcsio.GoogleCloudStorageImpl.class com.google.cloud.hadoop.gcsio.GoogleCloudStorageItemInfo.class com.google.cloud.hadoop.gcsio.GoogleCloudStorageOptions.class com.google.cloud.hadoop.gcsio.GoogleCloudStorageReadChannel.class com.google.cloud.hadoop.gcsio.GoogleCloudStorageStrings.class com.google.cloud.hadoop.gcsio.GoogleCloudStorageWriteChannel.class com.google.cloud.hadoop.gcsio.InMemoryDirectoryListCache.class com.google.cloud.hadoop.gcsio.LegacyPathCodec.class com.google.cloud.hadoop.gcsio.MetadataReadOnlyGoogleCloudStorage.class com.google.cloud.hadoop.gcsio.ObjectWriteConditions.class com.google.cloud.hadoop.gcsio.PathCodec.class com.google.cloud.hadoop.gcsio.StorageResourceId.class com.google.cloud.hadoop.gcsio.ThrottledGoogleCloudStorage.class com.google.cloud.hadoop.gcsio.UpdatableItemInfo.class com.google.cloud.hadoop.gcsio.UriEncodingPathCodec.class com.google.cloud.hadoop.gcsio.VerificationAttributes.class com.google.cloud.hadoop.gcsio.testing.InMemoryBucketEntry.class com.google.cloud.hadoop.gcsio.testing.InMemoryGoogleCloudStorage.class com.google.cloud.hadoop.gcsio.testing.InMemoryObjectEntry.class com.google.cloud.hadoop.gcsio.testing.InMemoryObjectReadChannel.class com.google.cloud.hadoop.gcsio.testing.TestConfiguration.class
gcsio-1.4.5.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (C) 2014 Google, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <packaging>jar</packaging> <parent> <groupId>com.google.cloud.bigdataoss</groupId> <artifactId>bigdataoss-parent</artifactId> <version>1.4.5</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>gcsio</artifactId> <name>gcsio.jar</name> <description> An implementation of org.apache.hadoop.fs.FileSystem targeting Google Cloud Storage </description> <version>1.4.5</version> <dependencies> <dependency> <groupId>com.google.api-client</groupId> <artifactId>google-api-client-java6</artifactId> </dependency> <dependency> <groupId>com.google.api-client</groupId> <artifactId>google-api-client-jackson2</artifactId> </dependency> <dependency> <groupId>com.google.apis</groupId> <artifactId>google-api-services-storage</artifactId> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava-testlib</artifactId> </dependency> <dependency> <groupId>com.google.oauth-client</groupId> <artifactId>google-oauth-client</artifactId> </dependency> <dependency> <groupId>com.google.oauth-client</groupId> <artifactId>google-oauth-client-java6</artifactId> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> </dependency> <dependency> <groupId>com.google.cloud.bigdataoss</groupId> <artifactId>util</artifactId> <version>${bigdataoss.util.version}</version> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> <!-- enable project.version substitution. --> <filtering>true</filtering> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes> <exclude>**/*IntegrationTest.java</exclude> <exclude>**/GoogleCloudStorageImplTest.java</exclude> </excludes> <reuseForks>false</reuseForks> </configuration> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>2.3</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <includes> <include>com.fasterxml.jackson.core:jackson-core</include> <include>com.google.api-client:*</include> <include>com.google.apis:*</include> <include>com.google.cloud.bigdataoss:util</include> <include>com.google.guava:*</include> <include>com.google.http-client:google-http-client</include> <include>com.google.http-client:google-http-client-jackson2</include> <include>com.google.oauth-client:google-oauth-client</include> <include>com.google.oauth-client:google-oauth-client-java6</include> <include>org.apache.httpcomponents:httpclient</include> <include>org.apache.httpcomponents:httpcore</include> <!-- needed by http client and versions conflict --> <include>commons-codec:commons-codec</include> </includes> </artifactSet> <minimizeJar>true</minimizeJar> <relocations> <relocation> <pattern>com.google.common</pattern> <shadedPattern>com.google.cloud.hadoop.repackaged.com.google.common</shadedPattern> </relocation> <relocation> <pattern>com.fasterxml</pattern> <shadedPattern>com.google.cloud.hadoop.repackaged.com.fasterxml</shadedPattern> </relocation> <relocation> <pattern>org.apache.commons.codec</pattern> <shadedPattern>com.google.cloud.hadoop.repackaged.org.apache.commons.codec</shadedPattern> </relocation> </relocations> <shadedArtifactAttached>true</shadedArtifactAttached> </configuration> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> </project>
<dependency> <groupId>com.google.cloud.bigdataoss</groupId> <artifactId>gcsio</artifactId> <version>1.4.5</version> </dependency>
If you think the following gcsio-1.4.5.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.