BAEL-3438: migrate to junit5, added small changes

This commit is contained in:
emanuel.trandafir
2023-10-05 21:01:22 +02:00
parent 02a680c9d6
commit ac9f71f090
7 changed files with 63 additions and 61 deletions
@@ -54,6 +54,11 @@
<artifactId>spring-security-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
</dependency>
<!-- Test containers only dependencies -->
<dependency>
<groupId>org.testcontainers</groupId>
@@ -61,6 +66,12 @@
<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>
<!-- Test containers only dependencies -->
</dependencies>
@@ -87,7 +98,7 @@
<properties>
<mapstruct.version>1.3.1.Final</mapstruct.version>
<testcontainers.version>1.17.3</testcontainers.version>
<testcontainers.version>1.19.1</testcontainers.version>
</properties>
</project>