Skip to content
This repository was archived by the owner on Jun 2, 2025. It is now read-only.

Commit 2be6961

Browse files
committed
Add dependencies to pom.xml to enable the running of Powermock unit tests
1 parent 8b02975 commit 2be6961

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

pom.xml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,12 @@
195195
<artifactId>spring-boot-starter</artifactId>
196196
<version>2.7.5</version>
197197
</dependency>
198+
<dependency>
199+
<groupId>org.mockito</groupId>
200+
<artifactId>mockito-core</artifactId>
201+
<version>3.12.4</version>
202+
<scope>test</scope>
203+
</dependency>
198204
<dependency>
199205
<groupId>org.powermock</groupId>
200206
<artifactId>powermock-api-mockito2</artifactId>
@@ -207,6 +213,11 @@
207213
<version>2.0.9</version>
208214
<scope>test</scope>
209215
</dependency>
216+
<dependency>
217+
<groupId>org.junit.vintage</groupId>
218+
<artifactId>junit-vintage-engine</artifactId>
219+
<scope>test</scope>
220+
</dependency>
210221
<dependency>
211222
<groupId>junit</groupId>
212223
<artifactId>junit</artifactId>
@@ -305,11 +316,6 @@
305316
<artifactId>snakeyaml</artifactId>
306317
<version>1.33</version>
307318
</dependency>
308-
<dependency>
309-
<groupId>org.apache.commons</groupId>
310-
<artifactId>commons-compress</artifactId>
311-
<version>1.21</version>
312-
</dependency>
313319
<dependency>
314320
<groupId>com.google.protobuf</groupId>
315321
<artifactId>protobuf-java</artifactId>
@@ -380,11 +386,6 @@
380386
<artifactId>websocket-common</artifactId>
381387
<version>9.4.49.v20220914</version>
382388
</dependency>
383-
<dependency>
384-
<groupId>commons-io</groupId>
385-
<artifactId>commons-io</artifactId>
386-
<version>2.11.0</version>
387-
</dependency>
388389
<dependency>
389390
<groupId>org.jsoup</groupId>
390391
<artifactId>jsoup</artifactId>

0 commit comments

Comments
 (0)