File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -15,19 +15,19 @@ Java 1.8 or above, with one of the following environments:
15
15
<dependency >
16
16
<groupId >io.minio</groupId >
17
17
<artifactId >minio</artifactId >
18
- <version >3.0.9 </version >
18
+ <version >3.0.10 </version >
19
19
</dependency >
20
20
```
21
21
22
22
## Download from gradle
23
23
``` xml
24
24
dependencies {
25
- compile 'io.minio:minio:3.0.9 '
25
+ compile 'io.minio:minio:3.0.10 '
26
26
}
27
27
```
28
28
29
29
## Download from JAR
30
- You can download the latest [ JAR] ( http://repo1.maven.org/maven2/io/minio/minio/3.0.9 / ) directly from maven.
30
+ You can download the latest [ JAR] ( http://repo1.maven.org/maven2/io/minio/minio/3.0.10 / ) directly from maven.
31
31
32
32
## Quick Start Example - File Uploader
33
33
This example program connects to an object storage server, makes a bucket on the server and then uploads a file to the bucket.
@@ -80,12 +80,12 @@ public class FileUploader {
80
80
81
81
#### Compile FileUploader
82
82
``` sh
83
- javac -cp " minio-3.0.9 -all.jar" FileUploader.java
83
+ javac -cp " minio-3.0.10 -all.jar" FileUploader.java
84
84
```
85
85
86
86
#### Run FileUploader
87
87
``` sh
88
- java -cp " minio-3.0.9 -all.jar:." FileUploader
88
+ java -cp " minio-3.0.10 -all.jar:." FileUploader
89
89
/home/user/Photos/asiaphotos.zip is successfully uploaded as asiaphotos.zip to ` asiatrip` bucket.
90
90
91
91
mc ls play/asiatrip/
You can’t perform that action at this time.
0 commit comments