pom.xml中repositories、pluginRepository的作用

pom.xml中repositories标签的作用是: 用来配置maven项目的远程仓库

示例如下:

    
        
            nexus
            Nexus Repository
            远程仓库地址
            
                true
            

            
                true 
            

        

    

按照上面配置是实现了配置maven项目的远程仓库,但是,这样的配置,如果我们创建一个项目,就需要配置一次,很麻烦。可以将上面的远程仓库配置在maven的setting.xml里面.这样就可以实现只配置一次
 

pom.xml中pluginRepository标签的作用是: 用来配置maven插件的远程仓库

示例如下:

   
        
            nexus
            Team Nexus Repository
            远程仓库地址
        

    

 

 

 

 

你可能感兴趣的:(maven)