maven parent.relativePath指向錯誤的問題
springboot框架搭建的時候,采用官方文檔
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.6.RELEASE</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
本地總是報錯
Could not transfer artifact org.springframework.boot:spring-boot-starter-parent:pom:1.5.6.RELEASE from/to central (https://repo.maven.apache.org/maven2): Server sent an unsupported extension: type_35 and ‘parent.relativePath‘ points at no local POM
parent.relativePath指向了本地pom,導致無法下載
通過更換maven鏡像可以解決此問題,在maven安裝目錄下的conf/settings.xml文件內<mirrors>增加一段
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>*</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
更改鏡像地址為阿裏雲的maven,在mvn compile可解決此問題
maven parent.relativePath指向錯誤的問題