I have this issue and i don´t know how to fix it: Dependency ‘com.fasterxml.jackson.core:jackson-databind:2.17.0’ not found
enter image description here
That appears when I included the dependency Jackson Databind.
I’m using Intellij and started a Spring boot project.
The pom code is follow:
4.0.0
org.springframework.boot
spring-boot-starter-parent
3.2.5
com.aluracursos
screenmatch
0.0.1-SNAPSHOT
screenmatch
Primer proyecto con Spring Boot
<java.version>21</java.version>
org.springframework.boot
spring-boot-starter
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.17.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
I uploaded to the JDK21, installed Maven, added to path both.
estifar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.