From 28013291dbf104b481b95652eba31af8ca792945 Mon Sep 17 00:00:00 2001 From: Alexey Abashev Date: Tue, 21 Jul 2020 23:16:38 +0300 Subject: [PATCH] Add classifier for shaded artifact --- README.md | 16 ++++++++++++++-- pom.xml | 4 +++- samples/s3-copy | 2 +- samples/s3-list | 2 +- samples/s3-remove | 2 +- 5 files changed, 20 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 2d8e47ba..20e45519 100644 --- a/README.md +++ b/README.md @@ -9,15 +9,27 @@ Amazon S3 driver for VFS (Apache Commons Virtual File System) ### How to add as dependency into your Maven build +For an artifact with embedded AWS SDK (an easiest way to bootstrap) + + + com.github.abashev + vfs-s3 + 4.3.1 + with-aws-sdk + + +For an artifact without dependencies + com.github.abashev vfs-s3 - 4.3.0 + 4.3.1 + ### How to add as dependency into your Gradle build - implementation 'com.github.abashev:vfs-s3:4.3.0' + implementation 'com.github.abashev:vfs-s3:4.3.1' ### URL format diff --git a/pom.xml b/pom.xml index fc4ad486..61538c6b 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ com.github.abashev vfs-s3 jar - 4.4.0-SNAPSHOT + 4.3.1 ${project.groupId}:${project.artifactId} Amazon S3 driver for VFS (Apache Commons Virtual File System) @@ -239,6 +239,8 @@ shade + true + with-aws-sdk true diff --git a/samples/s3-copy b/samples/s3-copy index bc2301fd..e37e593e 100755 --- a/samples/s3-copy +++ b/samples/s3-copy @@ -1,6 +1,6 @@ #!/usr/bin/env groovy -@Grab(group='com.github.abashev', module='vfs-s3', version='4.3.0') +@Grab(group='com.github.abashev', module='vfs-s3', version='4.3.1') @Grab(group='commons-httpclient', module='commons-httpclient', version='3.1') import org.apache.commons.vfs2.* diff --git a/samples/s3-list b/samples/s3-list index cb3015d2..72993dc8 100755 --- a/samples/s3-list +++ b/samples/s3-list @@ -1,6 +1,6 @@ #!/usr/bin/env groovy -@Grab(group='com.github.abashev', module='vfs-s3', version='4.3.0') +@Grab(group='com.github.abashev', module='vfs-s3', version='4.3.1') @Grab(group='commons-httpclient', module='commons-httpclient', version='3.1') import org.apache.commons.vfs2.* diff --git a/samples/s3-remove b/samples/s3-remove index dcbaa53f..ac78f180 100755 --- a/samples/s3-remove +++ b/samples/s3-remove @@ -1,6 +1,6 @@ #!/usr/bin/env groovy -@Grab(group='com.github.abashev', module='vfs-s3', version='4.3.0') +@Grab(group='com.github.abashev', module='vfs-s3', version='4.3.1') import org.apache.commons.vfs2.*