YuKy1327 发表于 2013-7-9 10:26:26

maven私库

随着国内使用maven开发的项目越来越多,我们在开发的时候经常遇到jar不存在,所以建立了公司的私库,同时也希望热爱maven开发的朋友可以受益,支持jeecg v3。
在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>


页: [1]
查看完整版本: maven私库