2016-07-14 178 views
3

項目構建錯誤:org.springframework的不可解析父項POM:gs-spring-boot:0.1.0:無法傳輸org.springframework.boot:spring- boot-starter-parent:pom:1.3.6.RELEASE from https://repo.maven.apache.org/maven2已緩存在本地存儲庫中,直到中央的更新時間間隔已過或更新被強制爲止,分辨率纔會重新嘗試。原始錯誤:無法傳輸工件org.springframework.boot:spring-boot-starter-parent:pom:1.3.6.RELEASE from/to central(https://repo.maven.apache.org/maven2):無法通過代理進行身份驗證,並且「parent.relativePath」指向錯誤當地POMMaven問題:項目構建錯誤:未解決的父項POM

+0

請問您可以發佈您的pom.xml以進一步瞭解嗎? –

+0

看看我的答案[here](http:// stackoverflow .COM /問題/ 38751782 /錯誤的項目創造功能於彈簧工具套件 - 採用彈簧起動項目/ 39056468#39056468)。它可能提供一個解決方案。 – GDB

回答

0

我有一個類似的問題,下面是pom.xml中 http://maven.apache.org/xsd/maven-4.0.0.xsd「> 4.0.0

<groupId>com.example</groupId> 
<artifactId>demo</artifactId> 
<version>0.0.1-SNAPSHOT</version> 
<packaging>jar</packaging> 

<name>microServicesDemo</name> 
<description>Demo project for Spring Boot</description> 

<parent> 
    <groupId>org.springframework.boot</groupId> 
    <artifactId>spring-boot-starter-parent</artifactId> 
    <version>1.4.0.RELEASE</version> 
    <relativePath/> <!-- lookup parent from repository --> 
</parent> 

<properties> 
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> 
    <java.version>1.8</java.version> 
</properties> 

<dependencies> 
    <dependency> 
     <groupId>org.springframework.boot</groupId> 
     <artifactId>spring-boot-starter</artifactId> 
    </dependency> 

    <dependency> 
     <groupId>org.springframework.boot</groupId> 
     <artifactId>spring-boot-starter-test</artifactId> 
     <scope>test</scope> 
    </dependency> 
</dependencies> 

<build> 
    <plugins> 
     <plugin> 
      <groupId>org.springframework.boot</groupId> 
      <artifactId>spring-boot-maven-plugin</artifactId> 
     </plugin> 
    </plugins> 
</build> 

相關問題