maven配置默认的中央仓库,setting.xml配置

项目中经常用到maven。经常见到setting.xml配置,不过公司一般都有私有的仓库。那么,如果我想在家里用maven下载jar包。就可以配置外网的默认中央仓库。

http://repo1.maven.org/maven2,这个地址也可以在浏览器打开,可查看你想要包的版本号。


1.settting.xml配置如下








          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">




  D:/repository3




 


 


 
 
   
 



 
 
   
 



 
 
   


   
 



 
 
   
 



 
 
      
 nexus
     
     
     
       
          central
          http://repo1.maven.org/maven2  
          true
          true
       

     

     
       
          central
          http://repo1.maven.org/maven2  
          true
          true
       

     

   
 
 



 
   
 





说明:上面的配置其实我就只配置了 profile这一项就够了。其他的都不配。


2.项目的pom.xml里配置

 
  4.3.2.RELEASE
 

 

   org.springframework
   spring-test
   ${spring.version}

 


以上,对项目进行maven install就可以自动从http://repo1.maven.org/maven2下载jar包到本地仓库D:\repository3里了。当然这个地址可能有点慢,但是比较稳定可靠,里面的版本也比较新。

你可能感兴趣的:(web开发,maven项目)