这是我使用Spring Boot的第一个项目。因此,我尝试使用父级更新pom.xml,如下所示:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.in28minutes.springboot</groupId>
<artifactId>first-springboot-project</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>springboot-in-10-steps</name>
<description>Demo project for Spring Boot</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version> <!-- lookup parent from repository -->
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
</project>
但是,我在一行中遇到错误:
项目构建错误:不可解析的父POM com.in28minutes.springboot:first-springboot-project:0.0.1-SNAPSHOT: 找不到工件 org.springframework.boot:spring-boot-starter-parent:pom:2.0.0.BUILD-SNAPSHOT 和“ parent.relativePath”指向错误的本地POM
请帮忙!
答案 0 :(得分:4)
没有2.0.0-BUILD-SNAPSHOT
这样的东西,您可能直接从Spring Boot项目复制了此内容?
可以在这里看到Spring Boot的发行版本;
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-parent
如果您想要最新的版本,<version>2.0.6.RELEASE</version>
将起作用。
如果要使用SNAPSHOT或Milestone版本,请参阅文档
指定所需的存储库。
答案 1 :(得分:1)
将2.0.0.BUILD-SNAPSHOT
更改为2.0.0.RELEASE