Maven - Plugins报错的正确解决之道

背景:

Maven - Plugins报错的正确解决之道_第1张图片

正确解决之道:

在自己本地Maven的安装目录中找到自己的仓库地址目录:直接搜索自己报错的插件文件,把它们删除,如图:

Maven - Plugins报错的正确解决之道_第2张图片

Maven - Plugins报错的正确解决之道_第3张图片

接着回到IDEA点击Maven刷新按钮重新加载即可:已解决
Maven - Plugins报错的正确解决之道_第4张图片

反例:即没什么卵用的方法(MySelf踩坑的经历)

Maven - Plugins报错的正确解决之道_第5张图片

找到Maven的setting.xml文件,找到标签,多补充几个镜像源:

 
    
        alimaven
        central
        aliyun maven
        http://maven.aliyun.com/nexus/content/repositories/central/
    
  
    
        central
        Maven Repository Switchboard
        http://repo1.maven.org/maven2/
        central
    

    
        repo2
        central
        Human Readable Name for this Mirror.
        http://repo2.maven.org/maven2/
    

    
        ibiblio
        central
        Human Readable Name for this Mirror.
        http://mirrors.ibiblio.org/pub/mirrors/maven2/
    

    
        jboss-public-repository-group
        central
        JBoss Public Repository Group
        http://repository.jboss.org/nexus/content/groups/public
    

    
        google-maven-central
        Google Maven Central
        https://maven-central.storage.googleapis.com
        
        central
    
    
    
    
        maven.net.cn
        oneof the central mirrors in china
        http://maven.net.cn/content/groups/public/
        central
    

你可能感兴趣的:(maven,java)