• maven國內資源包

    pip國內資源包 composer國內資源包 gem國內資源包 maven國內資源包 npm國內資源包

    使用包管理可以大大降低引用和管理第三方庫的成本,但是很多源都在國外,通過包管理安裝的時候,容易超時;我們可以通過修改為國內源,或者使用代理來解決這個問題。

    本文檔是bejson為您整理的maven包國內資源,包括阿里云maven包等

    提供方 源及使用方式
    阿里云

    http://maven.aliyun.com/nexus/content/groups/public/

    <?xml version="1.0" encoding="UTF-8"?>
    <settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd" xmlns="http://maven.apache.org/SETTINGS/1.1.0"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
      <mirrors>
        <mirror>
          <id>alimaven</id>
          <name>aliyun maven</name>
          <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
          <mirrorOf>central</mirrorOf>
        </mirror>
      </mirrors>
      <profiles>
        <profile>
            <repositories>
              <repository>
                <id>central</id>
                <name>Maven Repository Switchboard</name>
                <layout>default</layout>
                <url>http://repo1.maven.org/maven2</url>
                <snapshots>
                  <enabled>false</enabled>
                </snapshots>
              </repository>
            </repositories>
            <id>offical</id>
        </profile>
      </profiles>
      <activeProfiles>
        <activeProfile>offical</activeProfile>
      </activeProfiles>
    </settings>

    您最近使用了:

    收藏 菜單 QQ