Integration tests now work with Boot 3.2

This commit is contained in:
Glenn Renfro
2023-09-11 14:56:40 -04:00
parent 40566a5bc7
commit 3997a161f2
4 changed files with 89 additions and 130 deletions

View File

@@ -135,6 +135,21 @@
<scope>test</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>mariadb</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>