关于IDEAmaven无法自动下载jar包pom报错

首先我的错误是在IDEA和ECLIPSE上都无法创建springboot与maven项目,都是同样的maven依赖不能自动下载的原因,所以排除了软件的问题,以下是解决路程:

一:我先了解了一下maven仓库的构成与核心配置文件settings.xml中每个字段都代表的是什么意思

1 <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" 2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 3 xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 4 https://maven.apache.org/xsd/settings-1.0.0.xsd"> 5 <localRepository>${user.home}/.m2/repository</localRepository> 6 <interactiveMode>true</interactiveMode> 7 <usePluginRegistry>false</usePluginRegistry> 8 <offline>false</offline> 9 ... 10 </settings>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zyypws.html