Support ability to run in development mode with postgresql for batch sample.

This commit is contained in:
Glenn Renfro
2023-09-13 17:18:48 -04:00
parent 01386e9030
commit 265a4e8ae9
4 changed files with 82 additions and 0 deletions

View File

@@ -57,6 +57,20 @@
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>postgresql</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-testcontainers</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
</dependencies>
<repositories>