Scala module 2.10.0 requires Jackson Databind version >= 2.10.0 and < 2.11.0
这是jackson多版本题 , 我们需要屏蔽所有hadoop 组件中的Jackson , 累积需要屏蔽四次.
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>*</artifactId>
</exclusion>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>