【发布时间】:2017-10-03 09:56:06
【问题描述】:
我正在尝试将我的应用程序迁移到 Spring Boot 2.0.0.M4
现在一切都很好,除了 spring-boot-maven-plugin 的一个问题:
Failure to find org.springframework.boot:spring-boot-maven-plugin:jar:2.0.0.M4 in https://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced
这是插件声明:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.0.M4</version>
</parent>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
可能出了什么问题以及如何解决?
【问题讨论】:
标签: maven spring-boot spring-boot-maven-plugin