File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -12,19 +12,19 @@ Java 1.8 or above.
12
12
<dependency >
13
13
<groupId >io.minio</groupId >
14
14
<artifactId >minio</artifactId >
15
- <version >8.0.1 </version >
15
+ <version >8.0.2 </version >
16
16
</dependency >
17
17
```
18
18
19
19
## Gradle usage
20
20
```
21
21
dependencies {
22
- compile 'io.minio:minio:8.0.1 '
22
+ compile 'io.minio:minio:8.0.2 '
23
23
}
24
24
```
25
25
26
26
## JAR download
27
- The latest JAR can be downloaded from [ here] ( https://repo1.maven.org/maven2/io/minio/minio/8.0.1 / )
27
+ The latest JAR can be downloaded from [ here] ( https://repo1.maven.org/maven2/io/minio/minio/8.0.2 / )
28
28
29
29
## Quick Start Example - File Uploader
30
30
This example program connects to an object storage server, makes a bucket on the server and then uploads a file to the bucket.
@@ -91,12 +91,12 @@ public class FileUploader {
91
91
92
92
#### Compile FileUploader
93
93
``` sh
94
- $ javac -cp minio-8.0.1 -all.jar FileUploader.java
94
+ $ javac -cp minio-8.0.2 -all.jar FileUploader.java
95
95
```
96
96
97
97
#### Run FileUploader
98
98
``` sh
99
- $ java -cp minio-8.0.1 -all.jar:. FileUploader
99
+ $ java -cp minio-8.0.2 -all.jar:. FileUploader
100
100
' /home/user/Photos/asiaphotos.zip' is successfully uploaded as object ' asiaphotos-2015.zip' to bucket ' asiatrip' .
101
101
102
102
$ mc ls play/asiatrip/
You can’t perform that action at this time.
0 commit comments