我正在尝试学习Spring Boot并将Spring Boot安装到Eclipse IDE中。当我创建第一个项目时,它在pom.xml的第一行中显示错误。它显示为未知错误。
我尝试了stackoverflow的许多解决方案。但是他们都不适合我。
Maven pom.xml error in eclipse When maven says "resolution will not be reattempted until the update interval of MyRepo has elapsed", where is that interval specified?
我的pom.xml如下。
<?xml version="1.0" encoding="UTF-8"?>
<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>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.5.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>demo</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</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>
</project>
任何人都可以帮助我解决这个问题。
答案 0 :(得分:1)
2周前我遇到了同样的问题。然后,我通过添加如下一行来修复它
<properties>
<!-- ... -->
<maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
</properties>
似乎该错误已在Eclipse中修复。
只需更新您的Eclipse或STS4。。您可能会看到m2e connector
与更新列表有关。