Include Junit5 dependencies in Spring Boot Starter Test

Closes gh-14736

Co-authored-by: Stephane Nicoll <snicoll@pivotal.io>
pull/16755/head
Madhura Bhave 6 years ago committed by Stephane Nicoll
parent d15347d4e5
commit d9f339a1b6

@ -36,8 +36,16 @@
<artifactId>jakarta.xml.bind-api</artifactId> <artifactId>jakarta.xml.bind-api</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>org.junit.jupiter</groupId>
<artifactId>junit</artifactId> <artifactId>junit-jupiter</artifactId>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.assertj</groupId> <groupId>org.assertj</groupId>

Loading…
Cancel
Save