Commit 4fc8a183 authored by Phillip Webb's avatar Phillip Webb

Add Jersey Jackson support

Fixes gh-2091
parent e6d46f57
...@@ -993,6 +993,11 @@ ...@@ -993,6 +993,11 @@
<artifactId>jersey-spring3</artifactId> <artifactId>jersey-spring3</artifactId>
<version>${jersey.version}</version> <version>${jersey.version}</version>
</dependency> </dependency>
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-json-jackson</artifactId>
<version>${jersey.version}</version>
</dependency>
<dependency> <dependency>
<groupId>org.hamcrest</groupId> <groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId> <artifactId>hamcrest-core</artifactId>
...@@ -1569,4 +1574,4 @@ ...@@ -1569,4 +1574,4 @@
<id>integration-test</id> <id>integration-test</id>
</profile> </profile>
</profiles> </profiles>
</project> </project>
\ No newline at end of file
...@@ -65,5 +65,9 @@ ...@@ -65,5 +65,9 @@
<groupId>org.glassfish.jersey.ext</groupId> <groupId>org.glassfish.jersey.ext</groupId>
<artifactId>jersey-spring3</artifactId> <artifactId>jersey-spring3</artifactId>
</dependency> </dependency>
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-json-jackson</artifactId>
</dependency>
</dependencies> </dependencies>
</project> </project>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment