Can't use jackson modules in CIB seven 2.0.0

Environment (Required on creation)

CIB seven 2.0.0 with springboot starter

Description (Required on creation; please attach any relevant screenshots, stacktraces, log files, etc. to the ticket)

When using the .mapTo() functionality on a SpinJsonNode it turns out that there is a second ObjectMapper provided in spinjar.com.fasterxml.jackson.databind.ObjectMapper. This mapper fully relies on the spinjar.com.fasterxml packages and therefore can't register any external modules.

The de/serialization of objects using the mapper which are introduced by external modules is failing.

Steps to reproduce (Required on creation)

  1. Include a dependency to an external jackson module (e.g. VavrModule, ...)
  2. Try using spinjar.com.fasterxml.jackson.databind.ObjectMapper.registerModule() functionality to register the module

Observed Behavior (Required on creation)

Since the new spinjar.com.fasterxml.jackson.databind.ObjectMapper fully depends on different base classes all located in spinjar.com.fasterxml.jackson, the module can't be registered.

Expected behavior (Required on creation)

Use the default jackson dependencies and packages

Root Cause (Required on prioritization)

Solution Ideas

Switch back from using spinjar.com.fasterxml.jackson to com.fasterxml.jackson

Hints

Links

Breakdown

### Pull Requests