Spring Boot 2.2.1 RELEASE 构建错误相对路径
Posted
技术标签:
【中文标题】Spring Boot 2.2.1 RELEASE 构建错误相对路径【英文标题】:Spring Boot 2.2.1 RELEASE build error-relative path 【发布时间】:2020-03-22 14:29:30 【问题描述】:在我的pom.xml
文件中添加 spring-boot 父级,如下所示
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.1 RELEASE</version>
<relativePath/>
</parent>
我将版本版本定义更改为<properties>
标记,如下所示
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spring-boot.version>2.2.1.RELEASE</spring-boot.version>
</properties>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>$spring-boot.version</version>
<relativePath/>
</parent>
在此更改后出现构建错误
Project build error: Non-resolvable parent POM for abc:abc:7.0.0.0: Failure to find org.springframework.boot:spring-boot-starter-parent:pom:$spring-boot.version in https://repo.maven.apache.org/maven2
was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced and 'parent.relativePath' points at no local POM
我尝试了以下解决方案
<relativePath/> to <relativePath>/<relativePath>
<relativePath/> to <relativePath>../pom.xml/<relativePath>
Updated maven project
我也尝试了以下链接 ***
【问题讨论】:
【参考方案1】:没有办法不从父 POM 继承属性。在父级中定义的属性在子级中可见。
【讨论】:
以上是关于Spring Boot 2.2.1 RELEASE 构建错误相对路径的主要内容,如果未能解决你的问题,请参考以下文章
TypeNotPresentExceptionProxy,将Spring Boot Starter父级从2.1.8升级到2.2.1
springcloud启动web模块报错spring-boot-maven-plugin:2.2.1.RELEASE:run (default-cli) on project da-web(示例代(代
Spring Boot:管理的版本是 1.3.2.RELEASE 工件在 org.springframework.boot:spring-boot-dependencies:1.3.2.RELEASE
Spring Boot 2.2.1在构建时创建两个jar [重复]
外部Log4j.properties在不打印日志中-Spring Boot 2.2.1
maven打包异常-Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:2.2.1.RELEAS