Spring Boot application can't resolve the org.springframework.boot package

前端 未结 17 1956
半阙折子戏
半阙折子戏 2020-12-29 19:34

I have set up a spring boot project using the Spring Initializer, I tried several times to create a new project or play with the dependencies, everything seems to be in plac

17条回答
  •  滥情空心
    2020-12-29 20:30

    After upgrading Spring boot to the latest version - 2.3.3.RELEASE. I also got this error - Cannot resolve org.springframework.boot:spring-boot-starter-test:unknown. Maven clean install, updating maven project, cleaning cache do not help.
    The solution was adding version placeholder from spring boot parent pom:

     
       org.springframework.boot
       spring-boot-starter-test
       ${spring-boot.version}
       test
     
    

提交回复
热议问题