Java maven國內映象
阿新 • • 發佈:2018-12-26
OS: Centos66
建立maven的國內映象settings.xml
編輯/etc/maven/settings.xml
將所有註釋去掉。
增加國內的映象
[[email protected] 22]# cat /etc/maven/settings.xml
<settings>
<mirrors>
<mirror>
<id>CN</id>
<name>OSChina Central</name>
<url>http://maven.oschina.net/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
</settings>
[ [email protected] 22]#