[IDEA] Maven project pom.xml dependency package download is too slow

Pom.xml file dependency package download is too slow

Solution

Configure the mirror address of the domestic Ali, and the speed is flying up~~

1. Open/create settings.xml

Right-click the project (or pom.xml file) to open or create settings.xml as shown in the figure below.
Insert picture description here

2. Add configuration to settings.xml

Configure the mirror address of domestic Ali through settings.xml. The content of the settings.xml file is as follows:

<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
          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">
    <mirrors>
        <mirror>
            <id>alimaven</id>
            <name>aliyun maven</name>
            <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
            <mirrorOf>central</mirrorOf>
        </mirror>

        <mirror>
            <id>uk</id>
            <mirrorOf>central</mirrorOf>
            <name>Human Readable Name for this Mirror.</name>
            <url>http://uk.maven.org/maven2/</url>
        </mirror>

        <mirror>
            <id>CN</id>
            <name>OSChina Central</name>
            <url>http://maven.oschina.net/content/groups/public/</url>
            <mirrorOf>central</mirrorOf>
        </mirror>

        <mirror>
            <id>nexus</id>
            <name>internal nexus repository</name>
            <url>http://repo.maven.apache.org/maven2</url>
            <mirrorOf>central</mirrorOf>
        </mirror>
    </mirrors>
</settings>

3, Shigeki IDEA, KO

Guess you like

Origin blog.csdn.net/weixin_40849588/article/details/100146822