Cannot resolve plugin org.springframework.boot spring-boot-maven-plugin:<unknown>

在创建springboot项目的时候,出现了如标题所示的问题,并且一直提示Clean up the broken artifacts data (.lastUpdated files) and reload the project.,点击链接清理后也无效,重启idea也没用,最后才发现是缺少版本信息导致不能找到spring-boot-maven-plugin

报错信息:

Cannot resolve plugin org.springframework.boot:spring-boot-maven-plugin:<unknown> 

Clean up the broken artifacts data (.lastUpdated files) and reload the project.

在这里插入图片描述

解决办法:添加<version>2.3.4.RELEASE</version>即可解决问题。

在这里插入图片描述