IntelliJ IDEA配置国内Maven镜像

Maven 国内访问奇慢无比,即使用了VPN。改成国内的镜像,瞬间就完成了。方法如下:

打开IntelliJ IDEA->Settings ->Build, Execution, Deployment -> Build Tools > Maven

IntelliJ IDEA配置国内Maven镜像_第1张图片


点击 Override。然后新建一个settings.xml.内容如下:


xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">

   
   
        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/
   

 

然后点击Apply 即可。

你可能感兴趣的:(Java)