公司的maven私库

随着国内使用maven开发的项目越来越多,我们在开发的时候经常遇到jar不存在,所以建立了公司的私库,同时也希望热爱maven开发的朋友可以受益。
在settings.xml中添加以下内容。
<profiles>
    <profile> 
      <id>nexus</id> 
      <repositories> 
            <repository> 
            <id>kxcomm-maven</id>
            <url>http://122.13.0.56:8088/nexus/content/groups/public/</url> 
            <releases> 
                  <enabled>true</enabled> 
            </releases> 
            <snapshots> 
                  <enabled>true</enabled> 
            </snapshots> </repository>   
      </repositories> 
</profile> 

  </profiles>
  <activeProfiles> 
      <activeProfile>nexus</activeProfile> 
</activeProfiles> 

猜你喜欢

转载自yuky1327.iteye.com/blog/1901763