Skip to content

Commit 4c96c76

Browse files
committed
Include Junit5 dependencies in Spring Boot Starter Test
See gh-14736
1 parent 12e1d9a commit 4c96c76

File tree

1 file changed

+14
-2
lines changed
  • spring-boot-project/spring-boot-starters/spring-boot-starter-test

1 file changed

+14
-2
lines changed

spring-boot-project/spring-boot-starters/spring-boot-starter-test/pom.xml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,20 @@
3232
<artifactId>json-path</artifactId>
3333
</dependency>
3434
<dependency>
35-
<groupId>junit</groupId>
36-
<artifactId>junit</artifactId>
35+
<groupId>org.junit.jupiter</groupId>
36+
<artifactId>junit-jupiter-engine</artifactId>
37+
</dependency>
38+
<dependency>
39+
<groupId>org.junit.jupiter</groupId>
40+
<artifactId>junit-jupiter-params</artifactId>
41+
</dependency>
42+
<dependency>
43+
<groupId>org.junit.vintage</groupId>
44+
<artifactId>junit-vintage-engine</artifactId>
45+
</dependency>
46+
<dependency>
47+
<groupId>org.mockito</groupId>
48+
<artifactId>mockito-junit-jupiter</artifactId>
3749
</dependency>
3850
<dependency>
3951
<groupId>org.assertj</groupId>

0 commit comments

Comments
 (0)