添加链接
link之家
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接

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可解决此问题

转载于:https://www.cnblogs.com/codingcheng/p/8598027.html

springboot框架搭建的时候,采用官方文档&lt;parent&gt; &lt;groupId&gt;org.springframework.boot&lt;/groupId&gt; &lt;artifactId&gt;spring-boot-starter-parent&lt;/artifactId&gt; &lt;version&gt;1.5.6.RELEASE&... &lt; relativePath /&gt;或者&lt; relativePath &gt;..&lt;/ relativePath &gt;或者&lt; relativePath &gt;..&lt;/ relativePath &gt; &lt;r... 东西很简单,只是作为一个记录给后面的兄弟。周末搞了Linux上使用 Maven 打包遇到的 问题 。如果忽略排查思路可直接看解决 The goal you specified requires a project to execute but there is no POM in this directory (/data/my). Please verify you invoked Maven from the correct directory 这个 错误 指的是当前目录没有pom文件,必须要到你项目
镜像下载、域名解析、时间同步请点击 阿里云开源镜像站 测试服务器 Maven 打包时遇到了如下的 错误 maven .aliyun.com: Name or service not known: Unknown host maven .aliyun.com: Name or service not known看上去应该是对 maven .aliyun.com的DNS 域名解析出 问题 了。 登录到服务器上 ping maven .aliyun.com 果然ping 不通, 而本地机器上是可以的。基本可以确定是 DNS的
将:< relativePath />或者< relativePath >..</ relativePath >或者< relativePath >..</ relativePath > 替换为:< relativePath >../</ relativePath > 转载于:https://www.cnblogs.com/blogg...