2019-12-05 09:56:52 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-06 07:44:43 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2023-08-28 11:28:01 -04:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2019-10-31 21:43:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2022-04-19 13:09:54 -04:00
|
|
|
<artifactId>aws-s3</artifactId>
|
2019-10-31 21:43:47 -04:00
|
|
|
<version>0.1.0-SNAPSHOT</version>
|
|
|
|
<packaging>jar</packaging>
|
2024-03-19 10:05:50 -04:00
|
|
|
<name>aws-s3</name>
|
2019-10-31 21:43:47 -04:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2022-04-19 13:09:54 -04:00
|
|
|
<artifactId>aws-modules</artifactId>
|
2019-10-31 21:43:47 -04:00
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2023-07-05 01:38:36 -04:00
|
|
|
<groupId>software.amazon.awssdk</groupId>
|
|
|
|
<artifactId>s3</artifactId>
|
2024-02-28 02:59:06 -05:00
|
|
|
<version>${aws-java-sdk-v2.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependency>
|
2024-02-19 08:22:17 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>software.amazon.awssdk</groupId>
|
|
|
|
<artifactId>url-connection-client</artifactId>
|
|
|
|
<version>${aws.java.sdk.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-10-31 21:43:47 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<version>${commons-io.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- JetS3t -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.lucee</groupId>
|
|
|
|
<artifactId>jets3t</artifactId>
|
2024-02-28 02:59:06 -05:00
|
|
|
<version>${jets3t.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.lucee</groupId>
|
|
|
|
<artifactId>commons-codec</artifactId>
|
2024-02-28 02:59:06 -05:00
|
|
|
<version>${commons-codec.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependency>
|
2024-02-19 08:22:17 -05:00
|
|
|
<!-- adobe s3mock -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.adobe.testing</groupId>
|
|
|
|
<artifactId>s3mock</artifactId>
|
|
|
|
<version>${com.adobe.testing.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.adobe.testing</groupId>
|
|
|
|
<artifactId>s3mock-testcontainers</artifactId>
|
|
|
|
<version>${com.adobe.testing.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
|
|
|
<version>${org.testcontainers.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<properties>
|
2023-07-05 01:38:36 -04:00
|
|
|
<aws.java.sdk.version>2.20.52</aws.java.sdk.version>
|
2024-02-19 08:22:17 -05:00
|
|
|
<com.adobe.testing.version>3.3.0</com.adobe.testing.version>
|
|
|
|
<org.testcontainers.version>1.19.4</org.testcontainers.version>
|
2024-02-28 02:59:06 -05:00
|
|
|
<commons-codec.version>1.10.L001</commons-codec.version>
|
|
|
|
<jets3t.version>0.9.4.0014L</jets3t.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
</project>
|