Skip to content

Commit

Permalink
Bump to new release.
Browse files Browse the repository at this point in the history
  • Loading branch information
minio-trusted committed Jan 5, 2017
1 parent 146c561 commit 5f6dcfd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@ This document assumes that you have one of the following Java Environments setup
<dependency>
<groupId>io.minio</groupId>
<artifactId>minio</artifactId>
<version>3.0.1</version>
<version>3.0.2</version>
</dependency>
```

## Download from gradle
```xml
dependencies {
compile 'io.minio:minio:3.0.1'
compile 'io.minio:minio:3.0.2'
}
```

## Download from JAR
You can download the latest [JAR](http://repo1.maven.org/maven2/io/minio/minio/3.0.1/) directly from maven.
You can download the latest [JAR](http://repo1.maven.org/maven2/io/minio/minio/3.0.2/) directly from maven.

## Quick Start Example - File Uploader
This example program connects to an object storage server, makes a bucket on the server and then uploads a file to the bucket.
Expand Down Expand Up @@ -79,12 +79,12 @@ public class FileUploader {

#### Compile FileUploader
```sh
javac -cp "minio-3.0.1-all.jar" FileUploader.java
javac -cp "minio-3.0.2-all.jar" FileUploader.java
```

#### Run FileUploader
```sh
java -cp "minio-3.0.1-all.jar:." FileUploader
java -cp "minio-3.0.2-all.jar:." FileUploader
/home/user/Photos/asiaphotos.zip is successfully uploaded as asiaphotos.zip to `asiatrip` bucket.

mc ls play/asiatrip/
Expand Down

0 comments on commit 5f6dcfd

Please sign in to comment.