I created a spring boot maven project. Everything was fine until I added spring-boot-starter-data-mongodb to the dependencies like below
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-mongodb</artifactId>
</dependency>
Intellij-idea complains
Failed to read artifact descriptor for org.springframework.boot:spring-boot-starter-data-mongodb:jar:2.3.2.RELEASE
and
Dependency 'org.springframework.boot:spring-boot-starter-data-mongodb:2.3.2.RELEASE' not found
Could anyone tell me how to solve this?