Skip to content

Commit 2f73b85

Browse files
committed
Add TestContainers to Maven Configuration
1 parent dcf87db commit 2f73b85

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

complete/pom.xml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,26 @@
2525
<groupId>org.springframework.boot</groupId>
2626
<artifactId>spring-boot-starter-data-rest</artifactId>
2727
</dependency>
28-
2928
<dependency>
3029
<groupId>org.springframework.boot</groupId>
3130
<artifactId>spring-boot-starter-test</artifactId>
3231
<scope>test</scope>
3332
</dependency>
33+
<dependency>
34+
<groupId>org.springframework.boot</groupId>
35+
<artifactId>spring-boot-testcontainers</artifactId>
36+
<scope>test</scope>
37+
</dependency>
38+
<dependency>
39+
<groupId>org.testcontainers</groupId>
40+
<artifactId>junit-jupiter</artifactId>
41+
<scope>test</scope>
42+
</dependency>
43+
<dependency>
44+
<groupId>org.testcontainers</groupId>
45+
<artifactId>neo4j</artifactId>
46+
<scope>test</scope>
47+
</dependency>
3448
</dependencies>
3549

3650
<build>

0 commit comments

Comments
 (0)