mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-15 20:25:50 +00:00
JSon support
- added json-path to pom.xml - added a simple test for Veterinarians
This commit is contained in:
parent
ecd9ccb227
commit
c2c404bff5
1 changed files with 8 additions and 1 deletions
9
pom.xml
9
pom.xml
|
@ -44,8 +44,9 @@
|
||||||
<logback.version>1.1.2</logback.version>
|
<logback.version>1.1.2</logback.version>
|
||||||
<slf4j.version>1.7.10</slf4j.version>
|
<slf4j.version>1.7.10</slf4j.version>
|
||||||
|
|
||||||
<!-- RSS -->
|
<!-- RSS and JSon-->
|
||||||
<rome.version>1.5.0</rome.version>
|
<rome.version>1.5.0</rome.version>
|
||||||
|
<json-path.version>0.9.1</json-path.version>
|
||||||
|
|
||||||
<!-- Test -->
|
<!-- Test -->
|
||||||
<junit.version>4.12</junit.version>
|
<junit.version>4.12</junit.version>
|
||||||
|
@ -106,6 +107,12 @@
|
||||||
<version>${jaxb-impl.version}</version>
|
<version>${jaxb-impl.version}</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.jayway.jsonpath</groupId>
|
||||||
|
<artifactId>json-path</artifactId>
|
||||||
|
<version>${json-path.version}</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
<!-- SPRING, SPRING, SPRINGITY SPRING -->
|
<!-- SPRING, SPRING, SPRINGITY SPRING -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.data</groupId>
|
<groupId>org.springframework.data</groupId>
|
||||||
|
|
Loading…
Reference in a new issue