From 0f020ba6841d46b3ccb9049724bce61622e5b3d5 Mon Sep 17 00:00:00 2001 From: "thibault.capt" <thibault.capt@etu.hesge.ch> Date: Sun, 12 Jan 2025 18:25:41 +0100 Subject: [PATCH] (feat): testcontainers --- backend/pom.xml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/backend/pom.xml b/backend/pom.xml index b6e736b..32c002e 100644 --- a/backend/pom.xml +++ b/backend/pom.xml @@ -101,6 +101,21 @@ <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> <version>2.3.0</version> </dependency> + <dependency> + <groupId>org.testcontainers</groupId> + <artifactId>junit-jupiter</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-testcontainers</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.testcontainers</groupId> + <artifactId>postgresql</artifactId> + <scope>test</scope> + </dependency> </dependencies> <build> -- GitLab