I'm trying to add this dependency in my Maven project but it gives me an error like:
"Dependency not found" even though I added the dependency by searching in Intellij IDEA
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.0</version>
</dependency>
<dependency>
CodePudding user response:
Most likely you just need to reload project in order to force IntelliJ to download the dependency. Right mouse click on the pom.xml
in the Project tree -> Maven -> Reload project. I hope it will help.