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:
		
							parent
							
								
									47fb614bde
								
							
						
					
					
						commit
						da1e49703b
					
				|  | @ -22,6 +22,10 @@ | ||||||
| 			<groupId>org.springframework.boot</groupId> | 			<groupId>org.springframework.boot</groupId> | ||||||
| 			<artifactId>spring-boot-test</artifactId> | 			<artifactId>spring-boot-test</artifactId> | ||||||
| 		</dependency> | 		</dependency> | ||||||
|  | 		<dependency> | ||||||
|  | 			<groupId>com.jayway.jsonpath</groupId> | ||||||
|  | 			<artifactId>json-path</artifactId> | ||||||
|  | 		</dependency> | ||||||
| 		<dependency> | 		<dependency> | ||||||
| 			<groupId>junit</groupId> | 			<groupId>junit</groupId> | ||||||
| 			<artifactId>junit</artifactId> | 			<artifactId>junit</artifactId> | ||||||
|  | @ -42,6 +46,10 @@ | ||||||
| 			<groupId>org.hamcrest</groupId> | 			<groupId>org.hamcrest</groupId> | ||||||
| 			<artifactId>hamcrest-library</artifactId> | 			<artifactId>hamcrest-library</artifactId> | ||||||
| 		</dependency> | 		</dependency> | ||||||
|  | 		<dependency> | ||||||
|  | 			<groupId>org.skyscreamer</groupId> | ||||||
|  | 			<artifactId>jsonassert</artifactId> | ||||||
|  | 		</dependency> | ||||||
| 		<dependency> | 		<dependency> | ||||||
| 			<groupId>org.springframework</groupId> | 			<groupId>org.springframework</groupId> | ||||||
| 			<artifactId>spring-core</artifactId> | 			<artifactId>spring-core</artifactId> | ||||||
|  |  | ||||||
|  | @ -1 +1 @@ | ||||||
| provides: spring-test,spring-boot,junit,mockito,hamcrest-library | provides: spring-test,spring-boot,junit,mockito,hamcrest-library,assertj,jsonassert,json-path | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue