http://ju.outofmemory.cn/entry/67085
上边两篇文章大概可以解决这个问题
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<shadedArtifactAttached>false</shadedArtifactAttached>
<createSourcesJar>true</createSourcesJar>
<relocations>
<relocation>
<pattern>com.fasterxml.jackson.core</pattern>
<shadedPattern>com.shaded.fasterxml.jackson.core</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>