50.5 S3 LocalStack Testcontainers test (#50)

This commit is contained in:
Art
2023-01-13 17:57:25 +02:00
parent 3aa359022c
commit 7b153f4cf6
2 changed files with 118 additions and 0 deletions

View File

@ -21,6 +21,8 @@
<docker.image.prefix>artarkatesoft</docker.image.prefix>
<docker.image.name>angular-${project.artifactId}</docker.image.name>
<testcontainers.version>1.17.6</testcontainers.version>
</properties>
<dependencies>
<dependency>
@ -128,6 +130,12 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
@ -136,6 +144,18 @@
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers-bom</artifactId>
<version>${testcontainers.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>