Joda Time Unsatisfied dependency

Hi team ,

I had problems to start spring boot with camunda 7.9.2.ee

The console output is

2018-08-16 15:13:24.293 WARN 41360 — [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name ‘org.camunda.bpm.engine.spring.SpringProcessEngineServicesConfiguration’: Unsatisfied dependency expressed through field ‘processEngine’; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘processEngineFactoryBean’: FactoryBean threw exception on object creation; nested exception is java.lang.NoClassDefFoundError: org/joda/time/ReadablePeriod
2018-08-16 15:13:24.295 INFO 41360 — [ main] o.s.s.concurrent.ThreadPoolTaskExecutor : Shutting down ExecutorService ‘camundaTaskExecutor’
2018-08-16 15:13:24.302 INFO 41360 — [ main] o.apache.catalina.core.StandardService : Stopping service [Tomcat]

Where I do assume org/joda/time/ReadablePeriod is the problematic part.
In maven dependencies library I can see joda-time-2.9.9.jar

after overwriting the library with

joda-time
joda-time
2.1

everything works smoothly.

I suppose I am doing somewhere a mistake, thank you for any advice

M