`
yuky1327
  • 浏览: 123036 次
  • 性别: Icon_minigender_2
  • 来自: 广州
社区版块
存档分类
最新评论

公司的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> 
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics