Skip to content

Commit

Permalink
Include Junit5 dependencies in Spring Boot Starter Test
Browse files Browse the repository at this point in the history
  • Loading branch information
mbhave committed Dec 6, 2018
1 parent 9aebe1f commit 3c3a302
Showing 1 changed file with 14 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,20 @@
<artifactId>json-path</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</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 3c3a302

Please sign in to comment.