Skip to content

Commit

Permalink
Include Junit5 dependencies in Spring Boot Starter Test
Browse files Browse the repository at this point in the history
Closes gh-14736

Co-authored-by: Stephane Nicoll <[email protected]>
  • Loading branch information
mbhave and snicoll committed May 8, 2019
1 parent d15347d commit d9f339a
Showing 1 changed file with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,16 @@
<artifactId>jakarta.xml.bind-api</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<groupId>org.junit.jupiter</groupId>
<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>
<groupId>org.assertj</groupId>
Expand Down

0 comments on commit d9f339a

Please sign in to comment.