zoukankan      html  css  js  c++  java
  • maven的setting配置远程仓库

    maven的setting,配置远程库。

        <mirror>
          <id>nexus-aliyun</id>
          <mirrorOf>central</mirrorOf> 
          <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
        </mirror>

    本地库配置

    </profiles>
        <profile>
            <id>nexus-local</id>
            <activation>
                <activeByDefault>true</activeByDefault>    
            </activation>
            <repositories>
                <repository>
                    <id>LocalMirrorId</id>
                    <url>http://10.1.*.*:8081/nexus/content/groups/public</url>
                    <releases><enabled>true</enabled></releases> 
                    <snapshots>
                        <enable>true</enable>
                        <updatePolicy>daily</updatePolicy>    
                    </snapshots>
                </repository>
            </repositories>
        </profile>
    </profiles>
        
      
    <activeProfiles>
        <activeProfile>nexus-local</activeProfile>
    </activeProfiles>
  • 相关阅读:
    生成器
    迭代器
    装饰器
    闭包函数
    函数对象
    函数
    文件
    字符编码
    基本的数据类型和内置方法02
    基本的数据类型和内置方法01
  • 原文地址:https://www.cnblogs.com/jinzhiming/p/14842143.html
Copyright © 2011-2022 走看看