zoukankan      html  css  js  c++  java
  • Maven下载私服上的jar包(全局)

    <mirror>
        <id>maven-public</id>
        <mirrorOf>maven-public</mirrorOf>
        <name>maven-public</name>
        <url>http://127.0.0.1:8081/repository/maven-public/</url>
    </mirror>
    <profile>
      <id>public</id>
      <repositories>
        <repository>
          <id>maven-public</id>
          <name>maven-public私服</name>
          <url>http://127.0.0.1:8081/repository/maven-public/</url>
          <snapshots>
            <enabled>true</enabled>
          </snapshots>
          <releases>
            <enabled>true</enabled>
          </releases>
        </repository>
      </repositories>
      <pluginRepositories>
        <pluginRepository>
          <id>maven-public</id>
          <name>http://127.0.0.1:8081/repository/maven-public/</name>                          
          <snapshots>
            <enabled>true</enabled>
          </snapshots>
          <releases>
            <enabled>true</enabled>
          </releases>
        </pluginRepository>
      </pluginRepositories>
    </profile>
    <activeProfiles>
        <activeProfile>public</activeProfile>
    </activeProfiles>
  • 相关阅读:
    BGP笔记
    IS-IS笔记
    MAC ACL、RACL和VACL
    MPLS笔记
    OSPF笔记
    RIP笔记
    组播浅谈
    如何查看本机是否是虚拟机
    python中逻辑运算符“+”的特殊之处
    劳动成本持续增高,中国企业如何自救?精益化生产提升企业附加值
  • 原文地址:https://www.cnblogs.com/boazy/p/6938739.html
Copyright © 2011-2022 走看看