spring-boot-starter-parent
发布时间:2025-06-24 18:11:55 作者:北方职教升学中心 阅读量:366
查看l文件。-- lookup parent from repository --></parent> 复制。spring-boot-starter-parent。pom.xm。
Plugin ‘org.springframework.boot:spring-boot-maven-plugin:‘ not found解决方案,#xff011可用于个人测试;
方法1:清理IDEA缓存。
方法二:添加版本号。
先看看你现在的版本号。<artifactId>spring-boot-starter-parent</artifactId>这一行。
- 首先打开。
<version>版本号</version>
然后修改。
File -> Invalidate Caches。
<plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>2.1.1.RELEASE</version> </plugin>效果:
将上面找到的版本号粘贴到错误报告行下面。
以我为例:
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.1.RELEASE</version> <relativePath/> <!-- lookup parent from repository --></parent>
复制。