Issue
I build a maven project and get an error on pom.xml Missing artifact in some dependencies. How can I resolve it?
Solution
I cannot see the value of ${jackson.version}
on your image, but from the title of the question I assume it's version 1.9.11 you're looking for. If you check in any of the multiple maven repository viewers, like maven central, you'll see that version is not present, and therefore maven cannot resolve that dependency. Click this link to see the versions available in maven central.
You must choose an existing version from the central repository or, if you have version 1.9.11 in another repository, include that repository details in your pom.xml file.
Answered By - Micho