2017-10-03 14 views
0

私は2.0.0.M4春ブーツ2.0.0.M4と春-ブートのmaven-pluginの

すべてが1以外今罰金起こっている春ブーツに移動するために自分のアプリケーションを移動しようとしているに移動します春・ブートの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のためにリリースM4まだ、

https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-maven-plugin

、M4を持っているPOM

<pluginRepositories> 
     <pluginRepository> 
      <id>spring-milestones</id> 
      <url>http://repo.spring.io/milestone</url> 
     </pluginRepository> 
    </pluginRepositories> 

をpluginRepoの追加があるよう

答えて