spring-boot-maven-plugin报红解决方案

 

原因1:可能是镜像配置问题,改为用阿里云的

进入maven文件夹下的conf文件夹,编辑settings.xml

   
      alimaven  
      aliyun maven  
      http://maven.aliyun.com/nexus/content/groups/public/  
      central          
     

 

其二可能是没加版本号:加上spring-boot-maven-plugin版本号,reimport下即可

 
        
            
                org.springframework.boot
                spring-boot-maven-plugin
                2.2.6.RELEASE
            
        
    

 

你可能感兴趣的:(maven)