我已经安装了带有maven插件的Spring工具套件,并安装了maven 3.6.1。 我已经在主文件夹(Windows)的.m2目录中设置了正确的settings.xml。 我第一次创建一个spring boot starter项目时,就创建了它,并将所有依赖项放置到位,我做了以下工作:-
Right click on project -> Maven -> Update Project -> Force update of snapshots(checked) [1]
第一次将所有依赖项下载到.m2 / repository文件夹中,当我将项目作为spring boot项目运行时,它成功运行。
但是当我在相同的工作空间中创建第二个spring starter项目并尝试了[1]中提到的内容时,出现以下错误:-
Failure to find org.springframework.boot:spring-boot-maven-plugin:jar:2.1.5.RELEASE in http://some.domain/nexus/content/groups/public was cached in the local repository, resolution will not be reattempted until the update interval of nexus has elapsed or updates are forced [2]
我一直面临[2]中提到的问题。
任何帮助将不胜感激
答案 0 :(得分:0)
我有一个带有pom.xml的spring starter项目,如下所示:-
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.5.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
但是我本地的Maven回购版本是2.1.4
已更改
<version>2.1.5.RELEASE</version>
收件人
<version>2.1.4.RELEASE</version>
问题得到解决