Eclipse自带Maven增加setting.xml

笃信好学,自然宽和

Eclipse版本:Mars.1 Release (4.5.1)

该版本是自带Maven的,在创建Maven项目后,会存在  C:\Users\Administrator\.m2\repository ;

Eclipse->Windows->首选项->Maven->User Settings,可以看到User Settings路径下 \.m2\settings.xml,但是进入.m2目录是没有settings.xml文件,不能配置本地厂库;

Eclipse自带Maven增加setting.xml_第1张图片

所以要手动在.m2路径下新增一个settings.xml文件;添加文件的内容后保存;

在首选项中Update Setting;因为在settings.xml中指定了本地厂库的路径,所以对应的Local Repository会对应改变;

备注:因为是初学Maven,对于配置还不是很了解。

对应settings.xml的内容,在百度上找了一篇,完全copy保存后,update时提示:Could not read settings.xml;

百度说什么 localrepositor  的路径用反斜杠的都试了也不行;

后来有找了一份就可以了,多了些配置项(但是配置项都为空的),不知道是否因为这个;若是在正式使用时,建议直接安装一个Maven,使用系统生成的settings.xml是最正确的。

另外用了阿里的库:

 http://maven.aliyun.com/nexus/content/groups/public

可以运行的settings.xml 如下代码:








  


  
  
  F:/eclipse_workspace20170314/repository

  

  

  
  
    
  

  
  
    
  

  
  
    

    
  

  
  
    

    
        nexus-aliyun
        central
        Nexus aliyun
        http://maven.aliyun.com/nexus/content/groups/public
    
  



  

  
    

    
  

  

你可能感兴趣的:(Maven)