Skip to content

Commit

Permalink
Release version 6.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
minio-trusted committed Aug 14, 2019
1 parent 322b6ef commit e00388e
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 @@ -15,19 +15,19 @@ Java 1.8 or above, with one of the following environments:
<dependency>
<groupId>io.minio</groupId>
<artifactId>minio</artifactId>
<version>6.0.9</version>
<version>6.0.10</version>
</dependency>
```

## Download from gradle
```xml
dependencies {
compile 'io.minio:minio:6.0.9'
compile 'io.minio:minio:6.0.10'
}
```

## Download from JAR
You can download the latest [JAR](http://repo1.maven.org/maven2/io/minio/minio/6.0.9/) directly from maven.
You can download the latest [JAR](http://repo1.maven.org/maven2/io/minio/minio/6.0.10/) 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 @@ -80,12 +80,12 @@ public class FileUploader {

#### Compile FileUploader
```sh
javac -cp "minio-6.0.9-all.jar" FileUploader.java
javac -cp "minio-6.0.10-all.jar" FileUploader.java
```

#### Run FileUploader
```sh
java -cp "minio-6.0.9-all.jar:." FileUploader
java -cp "minio-6.0.10-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 e00388e

Please sign in to comment.