配置 maven setting.xml 爲國內(aliyun)的倉庫 不生效

配置 maven setting.xml 爲國內的倉庫 不生效apache

maven的 setting文件默認是中央倉庫地址,國外的,速度比較慢 想換成國內的倉庫地址:http://maven.aliyun.com/nexus/content/groups/public/ 可是 修改了幾回使用不生效,依然去 國外的中央倉庫下載 jar文件緩存

最近 新安裝 開發環境,又配置了一下,仍是沒生效, 而後隔天來 重啓機器 竟然好了。maven

我懷疑這個事情 仍是在哪裏有緩存,setting.xml配置文件以下:url

<?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">
  <!-- localRepository
   | The path to the local repository maven will use to store artifacts.
   |
   | Default: ${user.home}/.m2/repository-->
	<localRepository>D:/maven</localRepository>

	<mirrors>  
        <mirror>  
            <id>nexus-aliyun</id>  
            <mirrorOf>central</mirrorOf>  
            <name>Nexus aliyun</name>  
            <url>http://maven.aliyun.com/nexus/content/groups/public/</url>  
        </mirror>  
    </mirrors>  
  
</settings>
相關文章
相關標籤/搜索