MAC端IDEA Maven 阿里云镜像配置

MAC端IDEA Maven 阿里云镜像配置

不需要下载本地maven,直接使用IDEA自带的maven(反正能用)

直接在IDEA上配置,修改一下配置文件就可以了

找到位置

Preferences – > Build,Execution,Deployment–>Build Tools–>Maven

按照此路径,就可以到达如图所示的位置
MAC端IDEA Maven 阿里云镜像配置_第1张图片

添加或者修改配置文件

找到自己计算机下对应位置,一般是

~/.m2/settings.xml

也可以自行随便找个地方创建文件,最好在选择该路径下的该文件,防止日后不小心删除了
如果该路径下没有settings.xml文件,新建文件settings.xml并复制一下代码进文件



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

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

        
            CN
            OSChina Central
            http://maven.oschina.net/content/groups/public/
            central
        

        
            nexus
            internal nexus repository
            
            http://repo.maven.apache.org/maven2
            central
        

    


如果有settings.xml文件,将一下代码插入标签内避免覆盖之前的配置


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

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

        
            CN
            OSChina Central
            http://maven.oschina.net/content/groups/public/
            central
        

        
            nexus
            internal nexus repository
            
            http://repo.maven.apache.org/maven2
            central
        

点击Override按钮,可以更换配置文件

上图中配置文件旁边那个Override按钮在配置完成后一定不能勾选,否则出现不能正常使用的问题

配置完成后一定不要勾选!!!
配置完成后一定不要勾选!!!
配置完成后一定不要勾选!!!

俺的痛。。。

你可能感兴趣的:(java,maven,阿里云镜像,java,maven,xml,mac,apache)