栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

Maven setting.xml配置文件详解

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Maven setting.xml配置文件详解

maven的配置文件settings.xml存在于两个地方:

1.安装的地方:${M2_HOME}/conf/settings.xml

2.用户的目录:${user.home}/.m2/settings.xml

前者又被叫做全局配置,对操作系统的所有使用者生效;后者被称为用户配置,只对当前操作系统的使用者生效。如果两者都存在,它们的内容将被合并,并且用户范围的settings.xml会覆盖全局的settings.xml。

Maven安装后,用户目录下不会自动生成settings.xml,只有全局配置文件。如果需要创建用户范围的settings.xml,可以将安装路径下的settings复制到目录${user.home}/.m2/。Maven默认的settings.xml是一个包含了注释和例子的模板,可以快速的修改它来达到你的要求。

全局配置一旦更改,所有的用户都会受到影响,而且如果maven进行升级,所有的配置都会被清除,所以要提前复制和备份${M2_HOME}/conf/settings.xml文件,一般情况下不推荐配置全局的settings.xml。

settings.xml详解

声明规范


 

localRepository

 
 usr/local/maven 

interactiveMode

 
 true

usePluginRegistry


 false 

offline

 
 false 

pluginGroups


 
 
 org.codehaus.mojo
  

proxies


 
 
 
  
  myproxy
  
  true
  
  http
  
  proxy.somewhere.com
  
  8080
  
  proxyuser
  
  somepassword
  
  *.google.com|ibiblio.org
 
  

servers


 
 
 
  
  server001
  
  my_login
  
  my_password
  
  ${usr.home}/.ssh/id_dsa
  
  some_passphrase
  
  664
  
  775
 
  

mirrors


 
 
 
  
  planetmirror.com
  
  PlanetMirror Australia
  
  http://downloads.planetmirror.com/pub/maven2
  
  central
 
  

profiles

 
 
 
 
  
  test 

Activation


  
  
  false
  
  1.5
  
  
   
   Windows XP
   
   Windows
   
   x86
   
   5.1.2600
  
  
  
   
   mavenVersion
   
   2.0.3
  
  
  
   
   ${basedir}/file2.properties
   
   ${basedir}/file1.properties
  
   

Properties

 
  
  ${user.home}/our-project
  

note:如果该profile被激活,则可以再POM中使用${user.install}。

Repositories

 
  
  
  
   
   codehausSnapshots
   
   Codehaus Snapshots
   
   
   
   false
   
   always
   
   warn
   
   
   
   
   
   
   http://snapshots.maven.codehaus.org/maven2
   
   default
  
  
  
  
  
           
      
   
   
   
   
   
   
     
    
 
  

activeProfiles


  
  
  env-test
  

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持考高分网。

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/142827.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号