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

问题1:首先确定Maven的pom.xml中的依赖内容能否通过setting.xml或默认setting的镜像下载完整,如果没有下载完整,请删除.m2中的repository内文件,更换镜像后再次下载。

    附阿里镜像配置文件:





    
        
        
            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:检查eclipse中jdk和JavaSE版本是否与POM文件配置版本相同,不相同的做更换操作。

关于Maven报错:org.apache.maven.plugins:maven--plugin:3.1:compile failed.的解决方案_第1张图片

(javaSe更换截图)

问题3:如以上两个操作还不能排除错误,再次删除.m2\repository\org\apache\maven\plugins\maven-compiler-plugin下所有文件,选择Clean项目,再Maven->update project即得到解决。

你可能感兴趣的:(Maven)