Skip to content

Commit d9f339a

Browse files
mbhavesnicoll
andcommitted
Include Junit5 dependencies in Spring Boot Starter Test
Closes gh-14736 Co-authored-by: Stephane Nicoll <[email protected]>
1 parent d15347d commit d9f339a

File tree

1 file changed

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

1 file changed

+10
-2
lines changed

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

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,16 @@
3636
<artifactId>jakarta.xml.bind-api</artifactId>
3737
</dependency>
3838
<dependency>
39-
<groupId>junit</groupId>
40-
<artifactId>junit</artifactId>
39+
<groupId>org.junit.jupiter</groupId>
40+
<artifactId>junit-jupiter</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>
4149
</dependency>
4250
<dependency>
4351
<groupId>org.assertj</groupId>

0 commit comments

Comments
 (0)