Add com.fasterxml.jackson to pom again to avoid runtime exception

This commit is contained in:
Manfred Karrer 2017-04-07 15:12:14 -05:00
parent 03c1b4970b
commit fba188d0b3

View file

@ -71,5 +71,22 @@
</exclusion>
</exclusions>
</dependency>
<!-- For some strange reason we need to include jackson here extra (is included in com.neemre) -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.8.7</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>2.8.7</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.8.7</version>
</dependency>
</dependencies>
</project>