Skip to content

Commit

Permalink
Release 4.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
abashev committed Jul 16, 2020
1 parent 7ff8222 commit 876d855
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ Amazon S3 driver for VFS (Apache Commons Virtual File System)
<dependency>
<groupId>com.github.abashev</groupId>
<artifactId>vfs-s3</artifactId>
<version>4.2.0</version>
<version>4.3.0</version>
</dependency>

### How to add as dependency into your Gradle build

implementation 'com.github.abashev:vfs-s3:4.2.0'
implementation 'com.github.abashev:vfs-s3:4.3.0'

### URL format

Expand All @@ -33,7 +33,9 @@ Provider | URL
----- | -------
Amazon S3 | https://aws.amazon.com/s3/
Yandex Object Storage | https://cloud.yandex.ru/services/storage
Mail.ru Cloud Storage | https://mcs.mail.ru/storage/
Mail.ru Cloud Storage | https://mcs.mail.ru/storage/
Alibaba Cloud Object Storage Service | https://www.alibabacloud.com/product/oss


### Sample groovy scripts - https://github.com/abashev/vfs-s3/tree/branch-4.x.x/samples

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.github.abashev</groupId>
<artifactId>vfs-s3</artifactId>
<packaging>jar</packaging>
<version>4.3.0-SNAPSHOT</version>
<version>4.3.0</version>

<name>${project.groupId}:${project.artifactId}</name>
<description>Amazon S3 driver for VFS (Apache Commons Virtual File System)</description>
Expand Down
2 changes: 1 addition & 1 deletion samples/s3-copy
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env groovy

@Grab(group='com.github.abashev', module='vfs-s3', version='4.2.0')
@Grab(group='com.github.abashev', module='vfs-s3', version='4.3.0')
@Grab(group='commons-httpclient', module='commons-httpclient', version='3.1')

import org.apache.commons.vfs2.*
Expand Down
2 changes: 1 addition & 1 deletion samples/s3-list
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env groovy

@Grab(group='com.github.abashev', module='vfs-s3', version='4.2.0')
@Grab(group='com.github.abashev', module='vfs-s3', version='4.3.0')
@Grab(group='commons-httpclient', module='commons-httpclient', version='3.1')

import org.apache.commons.vfs2.*
Expand Down
2 changes: 1 addition & 1 deletion samples/s3-remove
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env groovy

@Grab(group='com.github.abashev', module='vfs-s3', version='4.2.0')
@Grab(group='com.github.abashev', module='vfs-s3', version='4.3.0')

import org.apache.commons.vfs2.*

Expand Down

0 comments on commit 876d855

Please sign in to comment.