Could not transfer artifact org.springframework.boot:spring-boot-starter-parent:pom:3.1.2.RELEASE from/to aliyunmaven
时间: 2023-10-13 15:04:49 浏览: 196
根据你提供的信息,从引用和引用中可以看出,你遇到的问题是在下载org.springframework.boot:spring-boot-starter-parent:pom:3.1.2.RELEASE这个依赖时出现了错误。错误信息显示无法找到有效的证书路径。这通常是由于你所使用的仓库(阿里云)没有提供这个版本的包所导致的。
解决这个问题的方法是使用一个包含所需版本的可信任的仓库。但是根据引用中的描述,你之前使用的仓库也出现了无法访问的问题。因此,你可以尝试其他可信任的仓库,比如官方的Maven中央仓库。你可以在你的项目的pom.xml文件中添加以下配置:
```
<repositories>
<repository>
<id>central</id>
<name>Maven Central Repository</name>
<url>https://repo.maven.apache.org/maven2</url>
</repository>
</repositories>
```
通过添加上述配置,你的项目将从Maven中央仓库获取所需的依赖。请记住,你需要将你项目中的相关依赖的版本改为Maven中央仓库中存在的版本。
希望这个解决方案能够帮助到你解决问题。如果问题仍然存在,请尝试参考其他资源或寻求进一步的帮助。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* [创建SpringBoot项目出现的问题(Could not transfer artifact org.springframework.boot:spring-boot-...](https://blog.csdn.net/weixin_43203310/article/details/126134054)[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 transfer artifact org.springframework.bootspring-boot-starter-parentpom](https://blog.csdn.net/m0_67393827/article/details/126616373)[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 ]
阅读全文
相关推荐


















