zoukankan      html  css  js  c++  java
  • maven 本地 使用私服 配置

    1 <mirrors>
    2      <mirror>
    3        <id>nexus</id>
    4        <mirrorOf>*</mirrorOf>
    5        <url>http://ip:8081/nexus/content/groups/public/</url>
    6      </mirror>
    7 </mirrors>
        <profile>
                        <id>nexus</id>
                        <repositories>
                            <repository>
                              <id>central</id>
                              <name>http://central</name>
                              <url>http://ip: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://ip:8081/nexus/content/groups/public/</url>
                                <releases><enabled>true</enabled></releases>
                                <snapshots><enabled>true></enabled></snapshots>
                           </pluginRepository>
                         </pluginRepositories>
       </profile>
     <activeProfiles>
        <activeProfile>nexus</activeProfile>
      </activeProfiles>
  • 相关阅读:
    SCCM2012 R2实战系列之四:初始化配置
    SCCM 2012 R2实战系列之一:SQL安装
    hdu 1242(bfs)
    hdu 1728(bfs)
    hdu 1253(bfs)
    hdu 3661
    hdu 1072(bfs)
    AC模版
    hdu 1010(dfs)
    poj 3628(01_page, dfs)
  • 原文地址:https://www.cnblogs.com/MDK-L/p/4482061.html
Copyright © 2011-2022 走看看