zoukankan      html  css  js  c++  java
  • maven nexus 设置

    首先设置: 

    <servers>
        <server>  
                <id>releases</id>  
                <username>xxx</username>  
                <password>zzz</password>  
        </server>  
          
        <server>  
                <id>snapshots</id>  
                <username>xxx</username>  
                <password>zzz</password>  
        </server>
     </servers>

    再设置:

      <mirrors>
        <mirror>  
                <id>nexus</id>
          <name>Team Nexus Repository</name>
          <url>http://maven.xxx.com:8081/nexus/content/groups/public/</url>
          <mirrorOf>central</mirrorOf>  
            </mirror>
      </mirrors>

     <profiles>
        <profile>
          <id>nexus</id>
          <repositories>
            <repository>
              <id>central</id>
              <url>http://repo.maven.apache.org/maven2</url>
              <releases>
                <enabled>true</enabled>
              </releases>
                    <snapshots>
                      <enabled>true</enabled>
                    </snapshots>
            </repository>
          </repositories>
          <pluginRepositories>
                  <pluginRepository>
                      <id>central</id>
                      <url>http://repo.maven.apache.org/maven2</url>
                      <releases>
                        <enabled>true</enabled>
                      </releases>
                      <snapshots>
                        <enabled>true</enabled>
                      </snapshots>
                   </pluginRepository>
              </pluginRepositories>
        </profile>
      </profiles>
     
     
      <activeProfiles>
        <activeProfile>nexus</activeProfile>      
      </activeProfiles>

  • 相关阅读:
    echarts 饼图
    vue echarts
    :style :class
    弹框弹出时禁止页面滚动
    2019-2-10 日记
    2019-1-27 日记
    2019-1-26 日记
    2019-1-3 日记
    2019-1-10 日记
    2019-1-2 日记
  • 原文地址:https://www.cnblogs.com/ldsweely/p/11586686.html
Copyright © 2011-2022 走看看