Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NoClassDefFoundError: org/codehaus/jackson/Versioned using Jackson JSON parser

I have a Spring MVC REST project and I am being given the following message when I try to build the application:

NoClassDefFoundError: org/codehaus/jackson/Versioned

I believe this is to do with the implementation of Jackson's JSON parser in the application but I am using:

 jackson-annotations-2.4.0.jar 
 jackson-core-2.4.1.jar
 jackson-databind-2.4.1.jar
like image 991
Mr Morgan Avatar asked Dec 20 '22 13:12

Mr Morgan


1 Answers

This class is part of the jackson-core-asl.jar include it in the classpath.

like image 165
Jens Avatar answered Dec 24 '22 01:12

Jens