【Maven】settings.xml详解

       maven的配置一般使用conf文件夹下的默认settings.xml即可,也可以根据项目情况自己做一些配置。settings.xml中包含类似本地仓储位置、修改远程仓储服务器、认证信息等配置。今天来总结一下maven的配置文件的主要标签。


	
	
	
	
	
	
	
	
	
	

 
  【规范声明】 
  

 

【localRepository】

  
   D:/SofeWare/Java/apache-maven-3.2.3/repository

【interactiveMode】

  
  true

【offline】

 
  false

【pluginGroups】


  
    
    com.your.plugins
  

【proxies】


  
  
    
    
	
	
      optional
	  
	    
      true
	  
	  
      http
	  
	  
      proxyuser
	  
	   
      proxypass
	  
	  
      proxy.host.net
	  
	  
      80
	  
	  
      local.net|some.host.com
    
    
  

【servers】


  
  
    
    
	
	 
      deploymentRepo
	  
	   
      repouser
	  
	  
      repopwd
    
    
      
    
      siteServer
	  
      /path/to/private/key
	  
	  
      optional; leave empty if not used.
    
    
  

【mirrors】


  
     
    
	
	
      mirrorId
	  
	  
      repositoryId
	  
	  
      Human Readable Name for this Mirror.
      
	  
	  http://my.repository.com/repo/path
    
     
  

【profiles】


  
   
   
    
	
	
      jdk-1.4

	  
      
	  
	  
        1.4
      

	   
      
	  
	  
        
		
		
          jdk14
		  
		  
          Repository for JDK 1.4 builds
          
		  
		  http://www.myhost.com/maven/jdk14
		  
		  
          default
		  
          always
        
      
    
    
  

【activeProfiles】


  
    alwaysActiveProfile
    anotherAlwaysActiveProfile
  

你可能感兴趣的:(【ma】)