当前位置: 首页 > 知识库问答 >
问题:

无法解析的父POM:无法传输org.springframework.boot:spring-boot-parent:POM:1.2.3.发行版

尹何平
2023-03-14

项目生成错误:不可解析的父POM:无法传输org.springframework.boot:spring-boot-parent:POM:1.2.3.来自http://central.maven.org/maven2/的版本已缓存在本地存储库中,在central的更新间隔已过或强制更新之前,将不会重新尝试解析。原始错误:无法传输项目org.springframework.boot:spring-boot-parent:pom:1.2.3。从/到central(http://central.maven.org/maven2/)发布:proxy.somewhere.com和“parent.relativePath”

我试过这里所有的答案...到目前为止还没有成功...它在家庭网络工作...BT不在办公室...我还用代理更改了settings.xml文件,bt没有用。下面是我的pom.xml

http://maven.apache.org/xsd/maven-4.0.0.xsd“>4.0.0

<groupId>org.springframework</groupId>
<artifactId>gs-batch-processing</artifactId>
<version>0.1.0</version>

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-parent</artifactId>
    <version>1.2.3.RELEASE</version>
</parent>

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


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

<repositories>
<repository>
  <id>central</id>
  <url>http://central.maven.org/maven2/</url>
</repository>

 settings.xml:

  ------------------------------------------
   <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
                   http://maven.apache.org/xsd/settings-1.0.0.xsd">
   <localRepository/>
   <interactiveMode/>
   <usePluginRegistry/>
   <offline/>
   <pluginGroups/>
    <servers/>
    <mirrors/>
   <proxies>
    <proxy>
    <id>myproxy</id>
    <active>true</active>
    <protocol>http</protocol>
    <host>proxy.somewhere.com</host>
    <port>7321</port>
    <username>proxyuser</username>
    <password>somepassword</password>
    <nonProxyHosts>*.google.com|ibiblio.org</nonProxyHosts>
   </proxy>
   </proxies>
    <profiles/>
    <activeProfiles/>

谢谢,阿南丹

共有1个答案

胡安怡
2023-03-14

出现上述错误是因为http://central.maven.org/maven2/无法获取org.springframework.boot:-boot-parent:pom:1.2.3.发布依赖项。

我也得到了同样的

 <parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.4.2.RELEASE</version>
  </parent>

该问题在以下更改后得到解决:

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.0.8.RELEASE</version>
  </parent>

请检查一次并给出你的反馈,无论它是否为你...

 类似资料: