Maven- No plugin found for prefix 'spring-boot' in the current project and in the plugin groups

后端 未结 11 2065
心在旅途
心在旅途 2020-12-02 14:56

I am trying to build a springboot project I built with Spring Tools Suite. I get the following error when I execute $mvn spring-boot:run

Downlo         


        
11条回答
  •  悲哀的现实
    2020-12-02 15:34

    If you are using Spring Boot for application, forgetting to add

    
        org.springframework.boot
        spring-boot-starter-parent
        1.2.7.RELEASE
     
    

    can cause this issue, as well as missing these lines

    
        
            spring-releases
            https://repo.spring.io/libs-release
        
    
    
        
            spring-releases
            https://repo.spring.io/libs-release
        
    
    

提交回复
热议问题