Plugin ‘org.springframework.boot:spring-boot-maven-plugin:‘ not found的解决方案,亲测可用!
File -> Invalidate Caches
先看自己当前的版本号
拿我的举例:
<parent>
?? ?<groupId>org.springframework.boot</groupId>
?? ?<artifactId>spring-boot-starter-parent</artifactId>
?? ?<version>2.1.1.RELEASE</version>
?? ?<relativePath/> <!-- lookup parent from repository -->
</parent>
复制 <version>版本号</version>
将上面查找到的版本号粘贴到报错的那一行下面即可。
效果:
<plugin>
? ? ? <groupId>org.springframework.boot</groupId>
? ? ? <artifactId>spring-boot-maven-plugin</artifactId>
?? ??? ?<version>2.1.1.RELEASE</version>
?</plugin>