Skip to content

Instantly share code, notes, and snippets.

@eugenp
Created October 25, 2011 17:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eugenp/1313645 to your computer and use it in GitHub Desktop.
Save eugenp/1313645 to your computer and use it in GitHub Desktop.
Building a RESTful API with Spring 3.1 and Java based Configuration, part 2 - the pom.xml
<dependencies>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<version>${jackson-mapper-asl.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>${jaxb-api.version}</version>
<scope>runtime</scope>
</dependency>
</dependencies>
<properties>
<jackson-mapper-asl.version>1.8.5</jackson-mapper-asl.version>
<jaxb-api.version>2.2.4</jaxb-api.version>
</properties>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment