Could not find artifact org.springframework.boot:spring-boot-starter-parent:pom:3.1.2.RELEASE in alimaven
时间: 2023-10-18 12:26:14 浏览: 189
根据引用,报错信息"Could not find artifact org.springframework.boot:spring-boot-starter-parent:jar:2.7.7 in nexus-aliyun (http://maven.aliyun.com/nexus/content/groups/public)"表明在nexus-aliyun仓库中找不到org.springframework.boot:spring-boot-starter-parent:jar:2.7.7这个依赖包。根据引用的提示,可以尝试修改依赖的type为pom,如下所示:
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.7</version>
<type>pom</type>
</dependency>
```
如果问题仍然存在,根据引用的解决方法,可以在项目的build中添加spring-boot-maven-plugin的配置,如下所示:
```
<build>
<plugins>
<!-- 打jar包时如果不配置该插件,打出来的jar包没有清单文件 -->
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.2.6.RELEASE</version>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
```
同时注意,如果你的项目继承了springboot父项目,那么不需要添加版本号;如果是导入springboot依赖,则在添加插件时需要添加版本号。
希望这些解决方法能帮助你解决问题。如果问题仍存在,可能需要检查你的仓库设置或者尝试其他解决方案。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* [Could not find artifact org.springframework.boot:spring-boot-starter-parent:jar](https://blog.csdn.net/a1004314120/article/details/128584548)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"]
- *3* [解决Could not find artifact org.springframework.boot:spring-boot-maven-plugin:pom](https://blog.csdn.net/weixin_44121790/article/details/116352371)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文