An open source Java toolkit for Amazon S3.
JetS3t is a free, open-source Java toolkit and application suite for the Amazon Simple Storage Service (Amazon S3). The JetS3t toolkit provides Java programmers with a powerful yet simple API for interacting with S3 and managing data stored there..
Here is the list of declaration for jets3t. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>net.java.dev.jets3t</groupId> <artifactId>jets3t</artifactId> <version>0.6.1</version> </dependency>
If you think this Maven repository POM file listing for jets3t is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:Apache License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.
The jets3t-0.6.1 has 3 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Data Structure | commons-codec 1.3 The codec package contains simple encoder and decoders for various formats such as Base64 and Hexadecimal. In addition to these widely used encoders and decoders, the codec package also maintains a collection of phonetic encoding utilities. | 348 |
Log | commons-logging 1.1.1 Commons Logging is a thin adapter allowing configurable bridging to other, well known logging systems. | 1143 |
Http | commons-httpclient 3.1 The HttpClient component supports the client-side of RFC 1945 (HTTP/1.0) and RFC 2616 (HTTP/1.1) , several related specifications (RFC 2109 (Cookies) , RFC 2617 (HTTP Authentication) , etc.), and provides a framework by which new request types (methods) or HTTP extensions can be created easily. | 430 |
The following packages are defined in the jets3t-0.6.1.jar
org.apache.commons.httpclient.contrib.proxy org.jets3t.service org.jets3t.service.acl org.jets3t.service.impl.rest org.jets3t.service.impl.rest.httpclient org.jets3t.service.impl.soap.axis org.jets3t.service.impl.soap.axis._2006_03_01 org.jets3t.service.io org.jets3t.service.model org.jets3t.service.multithread org.jets3t.service.security org.jets3t.service.utils org.jets3t.service.utils.gatekeeper org.jets3t.service.utils.signedurl
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>net.java.dev.jets3t</groupId> <artifactId>jets3t</artifactId> <packaging>jar</packaging> <version>0.6.1</version> <name>An open source Java toolkit for Amazon S3</name> <description>JetS3t is a free, open-source Java toolkit and application suite for the Amazon Simple Storage Service (Amazon S3). The JetS3t toolkit provides Java programmers with a powerful yet simple API for interacting with S3 and managing data stored there.</description> <url>http://jets3t.s3.amazonaws.com/index.html</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://jets3t.dev.java.net/source/browse/jets3t/</url> </scm> <dependencies> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.3</version> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> <version>3.1</version> </dependency> </dependencies> </project>