Maven domestic package repository

pip domestic package repository composer domestic package Gem domestic resource package Maven domestic package repository npm domestic resource packages

Using package management can significantly reduce the cost of referencing and managing third-party libraries, but many sources are overseas, which often leads to timeouts during installation. We can solve this by switching to domestic sources or using a proxy.

This document is a collection of domestic resources for Maven packages compiled by bejson, including Alibaba Cloud Maven packages, etc.

Provider Source and usage method
Alicloud

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>

You recently used:

收藏: favorite Menu QQ