Skip to content

Commit

Permalink
Version 4.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
abashev committed Jul 9, 2022
1 parent 0ea11ee commit 6dab0d7
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ For an artifact with embedded AWS SDK (an easiest way to bootstrap)
<dependency>
<groupId>com.github.abashev</groupId>
<artifactId>vfs-s3</artifactId>
<version>4.3.5</version>
<version>4.3.6</version>
<classifier>with-aws-sdk</classifier>
</dependency>

Expand All @@ -23,13 +23,13 @@ For an artifact without dependencies
<dependency>
<groupId>com.github.abashev</groupId>
<artifactId>vfs-s3</artifactId>
<version>4.3.5</version>
<version>4.3.6</version>
</dependency>


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

implementation 'com.github.abashev:vfs-s3:4.3.5'
implementation 'com.github.abashev:vfs-s3:4.3.6'

### URL format

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-SNAPSHOT</version>
<version>4.3.6</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.3.5')
@Grab(group='com.github.abashev', module='vfs-s3', version='4.3.6')
@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.3.5')
@Grab(group='com.github.abashev', module='vfs-s3', version='4.3.6')
@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.3.5')
@Grab(group='com.github.abashev', module='vfs-s3', version='4.3.6')

import org.apache.commons.vfs2.*

Expand Down

0 comments on commit 6dab0d7

Please sign in to comment.