新装maven建的第一个项目报错,下载失败

问题

错误大概如下,就是无法下载jar包

[ERROR] Plugin org.apache.maven.plugins:maven-clean-plugin:2.5 or one of its dependencies could not be resolve..

尝试了以下方法:

  • 删除这个目录下的C:\Users\Administrator\.m2\repository(你自己的目录)所有文件,没用

  • setting.xml里面换成阿里源,没用

  • 直接在pom.xml加上阿里源,没用


    
        aliyun
        aliyun
        https://maven.aliyun.com/repository/central/
        
            true
        
        
            false
        
    

解决

最后,在这里找到了解决办法

1.首先要知道,IDEA是自带maven的,这里不用它自带,改成我们自己的,首先要去maven官网下载,然后配置环境变量,然后再IDEA里面修改一下配置,如下图,修改红框中的地方,改成自己的maven路径

新装maven建的第一个项目报错,下载失败_第1张图片

2.然后修改一下setting.xml里面的镜像,方便后面下的更快


    
        alimaven
        aliyun maven
        http://maven.aliyun.com/nexus/content/groups/public/
        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
    
    
    
        maven.net.cn
        oneof the central mirrors in china
        http://maven.net.cn/content/groups/public/
        central
    

3.最关键的一步,之前下载失败问题都出在这里,看图操作

新装maven建的第一个项目报错,下载失败_第2张图片

如上图所示进入Maven->Runner 然后将下面内容复制粘贴到VM Options当中保存即可。

-Dmaven.wagon.http.ssl.insecure=true -Dmaven.wagon.http.ssl.allowall=true -Dmaven.wagon.http.ssl.ignore.validity.dates=true

你可能感兴趣的:(新装maven建的第一个项目报错,下载失败)