This is an automated email from the ASF dual-hosted git repository. bchapuis pushed a commit to branch geoparquet-filtering-and-simplification in repository https://gitbox.apache.org/repos/asf/incubator-baremaps.git
commit cb2eaa5a00546ce69c0087b1eb2ab3ee48db1b93 Author: Bertil Chapuis <[email protected]> AuthorDate: Mon Sep 30 22:19:55 2024 +0200 Add s3 transfer manager dependency --- baremaps-geoparquet/pom.xml | 4 ++++ pom.xml | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/baremaps-geoparquet/pom.xml b/baremaps-geoparquet/pom.xml index 6323d207..bd687aa3 100644 --- a/baremaps-geoparquet/pom.xml +++ b/baremaps-geoparquet/pom.xml @@ -49,5 +49,9 @@ <groupId>software.amazon.awssdk</groupId> <artifactId>s3</artifactId> </dependency> + <dependency> + <groupId>software.amazon.awssdk</groupId> + <artifactId>s3-transfer-manager</artifactId> + </dependency> </dependencies> </project> diff --git a/pom.xml b/pom.xml index 75f89b46..cec70864 100644 --- a/pom.xml +++ b/pom.xml @@ -491,6 +491,11 @@ limitations under the License. <artifactId>s3</artifactId> <version>${version.lib.awssdk}</version> </dependency> + <dependency> + <groupId>software.amazon.awssdk</groupId> + <artifactId>s3-transfer-manager</artifactId> + <version>${version.lib.awssdk}</version> + </dependency> </dependencies> </dependencyManagement>
