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>

  • 相关阅读:
    修改css样式+jq中的效果+属性操作+元素操作
    案例1:点击菜单显示相应的图片
    jq容易混淆点
    jQuery中的选择器
    JQ基本
    arguments的使用
    函数方法
    forEach遍历
    数组中常用的方法
    数组 Array
  • 原文地址:https://www.cnblogs.com/ldsweely/p/11586686.html
Copyright © 2011-2022 走看看