Project build error: Non-resolvable parent POM: Failure to transfer org.springfr

Description Resource Path Location Type

Project build error: Non-resolvable parent POM: Failure to transfer org.springframework.boot:spring-boot-starter-parent:pom:1.5.4.RELEASE from https://maven-repository.com/ was cached in the local repository, resolution will not be reattempted until the update interval of nexus-aliyun has elapsed or updates are forced. Original error: Could not transfer artifact org.springframework.boot:spring-boot-starter-parent:pom:1.5.4.RELEASE from/to nexus-aliyun (https://maven-repository.com/): connection timed out to https://maven-repository.com/org/springframework/boot/spring-boot-starter-parent/1.5.4.RELEASE/spring-boot-starter-parent-1.5.4.RELEASE.pom and 'parent.relativePath' points at wrong local POM pom.xml /favorites-web line 10 Maven pom Loading Problem

异常解决:

由于版本问题引起:

<parent>

        <groupId>org.springframework.boot</groupId>

        <artifactId>spring-boot-starter-parent</artifactId>

        <version>1.5.4.RELEASE</version>

    </parent>、

将 <version>1.5.4.RELEASE</version>改为 <version>1.3.3.RELEASE</version> 解决。。

猜你喜欢

转载自xinjiatao.iteye.com/blog/2401370