zoukankan      html  css  js  c++  java
  • Maven私仓配置

    <?xml version="1.0" encoding="UTF-8"?>
    <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
    
    <pluginGroups />
        <proxies />
        <!-- 私仓账号密码 -->
        <servers>
          <server>
            <id>ejiayou-repository</id>
            <username>私仓账号</username>
            <password>私仓密码</password>
          </server>
        </servers>
        
         <mirrors>
          <mirror>
            <id>nexusMirror</id>
            <mirrorOf>*</mirrorOf>
            <name>Human Readable Name for this Mirror.</name>
            <url>私仓地址</url>
          </mirror>
        </mirrors>
        <profiles>
          <profile>
            <id>nexusProfile</id>
            <repositories>
              <repository>
                <id>public</id>
                <name>Public Repositories</name>
                <url>https://maven.ejiayou.com/repository/maven-public/</url>
              </repository>
              <!-- open this,can download releases version dependency-->
              <releases>
                <enabled>true</enabled>
              </releases>
              <!-- open this,can download snapshot version dependency,default is false. -->
              <snapshots>
                <enabled>true</enabled>
              </snapshots>
            </repositories>
          </profile>
        </profiles>
        <activeProfiles>
          <activeProfile>nexusProfile</activeProfile>
        </activeProfiles>
    
        <localRepository>C:manveRepository</localRepository>
    </settings>
  • 相关阅读:
    Queries about less or equal elements CodeForces
    Session in BSU CodeForces
    基环树
    骑士 HYSBZ
    Valid BFS? CodeForces
    Trips CodeForces
    The writing on the wall 南京网络赛2018B题
    Building a Space Station
    Constructing Roads
    Networking
  • 原文地址:https://www.cnblogs.com/xinjie10001/p/7372564.html
Copyright © 2011-2022 走看看