Skip to content

Commit 75337cf

Browse files
committed
Add testcontainers dependencies
1 parent 27d3dfb commit 75337cf

File tree

1 file changed

+30
-1
lines changed

1 file changed

+30
-1
lines changed

pom.xml

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@
4242
<artifactId>springfox-swagger-ui</artifactId>
4343
<version>2.9.2</version>
4444
</dependency>
45-
4645
<dependency>
4746
<groupId>org.springframework.boot</groupId>
4847
<artifactId>spring-boot-devtools</artifactId>
@@ -53,6 +52,36 @@
5352
<artifactId>spring-boot-starter-test</artifactId>
5453
<scope>test</scope>
5554
</dependency>
55+
56+
<dependency>
57+
<groupId>org.junit.jupiter</groupId>
58+
<artifactId>junit-jupiter-engine</artifactId>
59+
<version>5.4.2</version>
60+
<scope>test</scope>
61+
</dependency>
62+
<dependency>
63+
<groupId>org.mockito</groupId>
64+
<artifactId>mockito-junit-jupiter</artifactId>
65+
<version>2.27.0</version>
66+
<scope>test</scope>
67+
</dependency>
68+
<dependency>
69+
<groupId>org.testcontainers</groupId>
70+
<artifactId>testcontainers</artifactId>
71+
<version>1.11.2</version>
72+
</dependency>
73+
<dependency>
74+
<groupId>org.testcontainers</groupId>
75+
<artifactId>junit-jupiter</artifactId>
76+
<version>1.11.2</version>
77+
<scope>test</scope>
78+
</dependency>
79+
<dependency>
80+
<groupId>org.testcontainers</groupId>
81+
<artifactId>elasticsearch</artifactId>
82+
<version>1.11.2</version>
83+
<scope>test</scope>
84+
</dependency>
5685
</dependencies>
5786

5887
<build>

0 commit comments

Comments
 (0)