無法解析parent POM——1.5.3.RELEASE
阿新 • • 發佈:2018-06-08
word 倉庫 maven name style spring ron 不知道 aliyun
<host>proxy.host.net</host>
<port>80</port>
<nonProxyHosts>local.net|some.host.com</nonProxyHosts>
</proxy>
報錯信息:
Non-resolvable parent POM for com.zhaoyang:eurekaTest:1.0-SNAPSHOT: Could not transfer artifact org.springframework.boot:spring-boot-starter-parent:pom:1.5.3.RELEASE from/to alimaven (http://maven.aliyun.com/nexus/content/groups/public/): proxy.host.net and ‘parent.relativePath‘ points at no local POM @ line 17, column 13
無法從阿裏雲的maven倉庫下載1.5.3.RELEASE
[[原因:]]
不知道什麽時候在本地倉庫的配置文件裏面(conf/setting.xml)增加了個沒用的代理:
<proxy>
<id>optional</id>
<active>true</active>
<protocol>http</protocol>
<username>proxyuser</username>
<password>proxypass</password>
<port>80</port>
<nonProxyHosts>local.net|some.host.com</nonProxyHosts>
</proxy>
把這個代理註釋掉,OK
然後本地倉庫刪除1.5.3.RELEASE這個包,重新下載,哦了!
無法解析parent POM——1.5.3.RELEASE