You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
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.6.0</version>
15
+
<version>9.0.0</version>
16
16
</dependency>
17
17
```
18
18
19
19
## Gradle usage
20
20
```
21
21
dependencies {
22
-
implementation("io.minio:minio:8.6.0")
22
+
implementation("io.minio:minio:9.0.0")
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.6.0/)
27
+
The latest JAR can be downloaded from [here](https://repo1.maven.org/maven2/io/minio/minio/9.0.0/)
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.
@@ -92,12 +92,12 @@ public class FileUploader {
92
92
93
93
#### Compile FileUploader
94
94
```sh
95
-
$ javac -cp minio-8.6.0-all.jar FileUploader.java
95
+
$ javac -cp minio-9.0.0-all.jar FileUploader.java
96
96
```
97
97
98
98
#### Run FileUploader
99
99
```sh
100
-
$ java -cp minio-8.6.0-all.jar:. FileUploader
100
+
$ java -cp minio-9.0.0-all.jar:. FileUploader
101
101
'/home/user/Photos/asiaphotos.zip' is successfully uploaded as object 'asiaphotos-2015.zip' to bucket 'asiatrip'.
0 commit comments