Maven修改鏡像

Maven鏡像修改

修改配置文件

maven的配置文件在conf目錄下的settings.xml文件當中,關於鏡像的配置如下:

  <mirrors>    
  <!-- mirror     | Specifies a repository mirror site to use instead of a given repository. The repository that     | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used     | for inheritance and direct lookup purposes, and must be unique across the set of mirrors.     | -->    
  	<mirror>      
  		<id>nexus-aliyun</id>      
  		<mirrorOf>*</mirrorOf>      
  		<name>Nexus aliyun</name>      
	      <url>http://maven.aliyun.com/nexus/content/groups/public</url>    
  	</mirror>       
  </mirrors>

上述配置是修改爲阿里雲的鏡像,除此之位還可以配置爲其餘鏡像
除此以外修改本地倉庫位置,配置如下:

  <localRepository>D:\maven\repository</localRepository>

完成即更改完畢

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章