From d2b365da133893f54781e347d87b504c1ce3d69f Mon Sep 17 00:00:00 2001 From: Paul-Christian Volkmer <paul-christian.volkmer@mni.thm.de> Date: Sun, 30 Sep 2012 12:51:08 +0200 Subject: [PATCH] Bug #3926: Tomcat servlet container did not provide a class It seems that Jetty provides "com.fasterxml.jackson.databind.JsonNode" in any way but Tomcat does not. So we have to include the package containing this class in our Maven configuration. We seriously have to check if ARSnova runs on our main target platform, not only our private developer platform! My be our developer platform should be the main target platform? --- pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pom.xml b/pom.xml index 4eff5729a..adaab57b1 100644 --- a/pom.xml +++ b/pom.xml @@ -246,6 +246,11 @@ <version>1</version> <scope>test</scope> </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + <version>2.0.6</version> + </dependency> </dependencies> <build> <plugins> -- GitLab