Cannot access repo.spring.io for Spring-boot exercises

后端 未结 4 805
清歌不尽
清歌不尽 2021-01-05 03:58

I\'m looking at spring-boot at the moment, but cannot access the repo.spring.io maven repository in builds.

I\'ve created the initial Gradle build file , but receive

4条回答
  •  栀梦
    栀梦 (楼主)
    2021-01-05 04:14

    repo.spring.io is no longer serving through plain http.

    1- Check your pom.xml file for http://repo.spring.io/plugins-release/

    2- and change it to https://repo.spring.io/plugins-release/

    like below

    
      
        spring-repo
        https://repo.spring.io/plugins-release/
      
    
    

提交回复
热议问题