Since the open source China's MAVEN warehouse has been in the use of foreign warehouses, slow to hit the computer's heart has. If you're as tired as I am. The turtle speed download of the foreign Maven warehouse. Try the Maven warehouse provided by Aliyun and never waste life ...
Warehouse Address: http://maven.aliyun.com/nexus/#view-repositories;public~browsestorage
Warehouse Configuration
In the mirrors node of MAVEN's Settings.xml file, add the following child nodes:
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name >nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
or directly at the profiles->profile->repositories node, add the following child nodes:
<repository>
<id>nexus-aliyun</id>
<name>nexus aliyun</name>
< Layout>default</layout>
<url>http://maven.aliyun.com/nexus/content/groups/public</url >
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases >
<enabled>true</enabled>
</releases>
</repository>
path to the settings file
Settings.xml's default path is: Personal directory/.m2/settings.xml
Such as:
Windowns:c:\users\ your username \.m2\settings.xml
Linux:/home/your username/.m2/settings.xml