maven國(guó)內(nèi)資源包

pip國(guó)內(nèi)資源包 composer國(guó)內(nèi)資源包 gem國(guó)內(nèi)資源包 maven國(guó)內(nèi)資源包 npm國(guó)內(nèi)資源包

使用包管理可以大大降低引用和管理第三方庫(kù)的成本,但是很多源都在國(guó)外,通過(guò)包管理安裝的時(shí)候,容易超時(shí);我們可以通過(guò)修改為國(guó)內(nèi)源,或者使用代理來(lái)解決這個(gè)問(wèn)題。

本文檔是bejson為您整理的maven包國(guó)內(nèi)資源,包括阿里云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