You are pointing to a Parent pom that does not exist in your local repository
. You should remove value for <relativePath>
tag so that maven could fetch the pom file from maven central repository
.
Change your parent tag as shown below.
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.2.RELEASE</version>
<relativePath />
</parent>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…