Add JSONassert and JsonPath to the test starter

Update spring-boot-starter-test to include JSONassert and JsonPath.
Both are generally useful libraries when writing MVC tests.

Fixes gh-5469
This commit is contained in:
Phillip Webb 2016-03-22 13:02:27 -07:00
parent 47fb614bde
commit da1e49703b
2 changed files with 9 additions and 1 deletions

View File

@ -22,6 +22,10 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-test</artifactId>
</dependency>
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
@ -42,6 +46,10 @@
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
</dependency>
<dependency>
<groupId>org.skyscreamer</groupId>
<artifactId>jsonassert</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>

View File

@ -1 +1 @@
provides: spring-test,spring-boot,junit,mockito,hamcrest-library
provides: spring-test,spring-boot,junit,mockito,hamcrest-library,assertj,jsonassert,json-path