Skip to content

Commit

Permalink
Release 4.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
abashev committed Apr 20, 2020
1 parent 67a050f commit 8b74941
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
12 changes: 10 additions & 2 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.1.0</version>
<version>4.2.0</version>
</dependency>

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

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

### URL format

Expand All @@ -27,6 +27,14 @@ Amazon S3 driver for VFS (Apache Commons Virtual File System)
- Sign-region is useful for custom implementations
- If endpoint URL from known providers then we will try to get bucket name from host, if not able to do it then bucket is first path segment

### Supported providers

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/

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

`s3-copy` able to copy between clouds, via http url or between different accounts
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.1.0-SNAPSHOT</version>
<version>4.2.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.1.0')
@Grab(group='com.github.abashev', module='vfs-s3', version='4.2.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.1.0')
@Grab(group='com.github.abashev', module='vfs-s3', version='4.2.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.1.0')
@Grab(group='com.github.abashev', module='vfs-s3', version='4.2.0')

import org.apache.commons.vfs2.*

Expand Down

0 comments on commit 8b74941

Please sign in to comment.