码迷,mamicode.com
首页 > 其他好文 > 详细

maven 本地 使用私服 配置

时间:2015-05-06 17:12:41      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

1 <mirrors>
2      <mirror>
3        <id>nexus</id>
4        <mirrorOf>*</mirrorOf>
5        <url>http://106.186.119.85:8081/nexus/content/groups/public/</url>
6      </mirror>
7 </mirrors>
 <profiles>
    

    <profile>
                    <id>nexus</id>
                    <repositories>
                        <repository>
                          <id>central</id>
                          <name>http://central</name>
                          <url>http://106.186.119.85:8081/nexus/content/groups/public/</url>
                          <releases><enabled>true</enabled></releases>
                          <snapshots><enabled>true></enabled></snapshots>
                        </repository>
                     </repositories>
                     <pluginRepositories>
                        <pluginRepository>
                            <id>central</id>
                            <name>http://central</name>
                            <url>http://106.186.119.85:8081/nexus/content/groups/public/</url>
                            <releases><enabled>true</enabled></releases>
                            <snapshots><enabled>true></enabled></snapshots>
                       </pluginRepository>
                     </pluginRepositories>
                </profile>

    
    <profile>
 <activeProfiles>
    <activeProfile>nexus</activeProfile>
  </activeProfiles>

 

maven 本地 使用私服 配置

标签:

原文地址:http://www.cnblogs.com/MDK-L/p/4482061.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!