Spaces:
Running
Running
| <project xmlns="http://maven.apache.org/POM/4.0.0" | |
| 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"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>io.ministack</groupId> | |
| <artifactId>ministack-testcontainers-example</artifactId> | |
| <version>1.0.0</version> | |
| <packaging>jar</packaging> | |
| <properties> | |
| <maven.compiler.source>17</maven.compiler.source> | |
| <maven.compiler.target>17</maven.compiler.target> | |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
| <testcontainers.version>1.19.8</testcontainers.version> | |
| <aws.sdk.version>2.25.40</aws.sdk.version> | |
| <junit.version>5.10.2</junit.version> | |
| </properties> | |
| <dependencies> | |
| <!-- JUnit 5 --> | |
| <dependency> | |
| <groupId>org.junit.jupiter</groupId> | |
| <artifactId>junit-jupiter</artifactId> | |
| <version>${junit.version}</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <!-- Testcontainers --> | |
| <dependency> | |
| <groupId>org.testcontainers</groupId> | |
| <artifactId>testcontainers</artifactId> | |
| <version>${testcontainers.version}</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.testcontainers</groupId> | |
| <artifactId>junit-jupiter</artifactId> | |
| <version>${testcontainers.version}</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <!-- AWS SDK v2 --> | |
| <dependency> | |
| <groupId>software.amazon.awssdk</groupId> | |
| <artifactId>s3</artifactId> | |
| <version>${aws.sdk.version}</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>software.amazon.awssdk</groupId> | |
| <artifactId>sqs</artifactId> | |
| <version>${aws.sdk.version}</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>software.amazon.awssdk</groupId> | |
| <artifactId>dynamodb</artifactId> | |
| <version>${aws.sdk.version}</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>software.amazon.awssdk</groupId> | |
| <artifactId>url-connection-client</artifactId> | |
| <version>${aws.sdk.version}</version> | |
| <scope>test</scope> | |
| </dependency> | |
| </dependencies> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-surefire-plugin</artifactId> | |
| <version>3.2.5</version> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| </project> | |