关于Maven报错:org.apache.maven.plugins:maven--plugin:3.1:compile failed.的解决方案

1、现在设置配置镜像配置在maven安装文件中找到/config/setting.xml 在mirror中添加一下内容;
'''

   
    
        alimaven
        central
        aliyun maven
        http://maven.aliyun.com/nexus/content/repositories/central/
    
    
    
        repo1
        central
        Human Readable Name for this Mirror.
        http://repo1.maven.org/maven2/
    

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

'''
2、删除.m2\repository\org\apache\maven\plugins\maven-compiler-plugin下所有文件,选择Clean项目,再Maven->update project即得到解决。
3、查看eclipse 中maven的配置文件地址是否正确


1585044729(1).png

温馨提示提示:报错原因是因为maven依赖环境出现问题没有下载成功jar包,构建镜像环境重新下载

你可能感兴趣的:(关于Maven报错:org.apache.maven.plugins:maven--plugin:3.1:compile failed.的解决方案)