Maven中添加阿里云仓库

2017-01-03  本文已影响33人  Wcy100

我们在开发的过程中,经常会使用本公司的maven仓库,有时候对于自己开发的项目,可能需要用到公共库,如下配置即可同时使用这二者。

修改~/.m2/settings.xml为以下内容:

<?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>/Users/wucongyou/.m2/repository</localRepository>  
  <interactiveMode>true</interactiveMode>  
  <usePluginRegistry>false</usePluginRegistry>  
  <offline>false</offline>  
  <mirrors> 
    <mirror> 
      <id>yourcompany-repo</id>  
      <mirrorOf>*</mirrorOf>  
      <name>anyname</name>  
      <url>http://yourcompany_repo_addr/content/groups/public</url> 
    </mirror>  
    <mirror> 
      <id>ali-maven</id>  
      <mirrorOf>central</mirrorOf>  
      <name>ali-maven</name>  
      <url>http://maven.aliyun.com/nexus/content/groups/public/</url> 
    </mirror> 
  </mirrors>  
</settings>
上一篇下一篇

猜你喜欢

热点阅读