diff --git a/backend/pom.xml b/backend/pom.xml index b6e736b1700f57cd34a4038c2436ff05958b917f..32c002e4c76c6c77850cb0f9662e426eae0c3115 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>