DATAREST-343 - Fixed dependency to jackson-annotations after 2.3.4 upgrade.

See: https://github.com/FasterXML/jackson-annotations/issues/39
This commit is contained in:
Oliver Gierke
2014-07-28 12:03:02 +02:00
parent e375a04da1
commit c595ce63e5
2 changed files with 4 additions and 2 deletions

View File

@@ -62,7 +62,7 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${jackson}</version>
<version>2.3.3</version>
</dependency>
</dependencies>

View File

@@ -65,7 +65,9 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${jackson}</version>
<!-- Jackson releases artifacts at will, need to explicitly refer to this one -->
<!-- See https://github.com/FasterXML/jackson-annotations/issues/39 -->
<version>2.3.3</version>
</dependency>
<!-- Jackson Hibernate -->