I had the same problem with a project built with Gradle and I excluded the transitive dependencies from the project that was creating the problem:
dependencies
{
compile('dependency.causing:problem:version')
{
exclude module: 'jackson-databind'
}
....
}
That worked perfectly for me.