get dependencies sorted out for spring rest services

This commit is contained in:
lawson89
2014-06-20 07:48:03 -04:00
parent 39d5888ef3
commit df68764e2c
5 changed files with 62 additions and 3 deletions

12
pom.xml
View File

@ -204,6 +204,18 @@
<artifactId>spring-core</artifactId>
<version>${org.springframework.version}</version>
</dependency>
<!-- Jackson -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.0.4</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.0.4</version>
</dependency>
<!-- Spring MVC framework -->
<dependency>