Maven configuration accelerates download of jar packages using Alibaba cloud image

Source: Internet
Author: User
Tags maven central aliyun

Maven Central Warehouse, originally have Oschina can use, now off. It seems to be possible to find Alibaba cloud recently. The configuration is as follows:

<mirrors>
    <mirror>
      <id>alimaven</id>
      <name>aliyun maven</name>
      <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
      <mirrorof>central </mirrorOf>        
    </mirror>
  </mirrors>

or add it directly to the repositories:

    <repositories>
        <repository>
            <id>aliyunmaven</id>
            <url>http:// maven.aliyun.com/nexus/content/groups/public/</url>
        </repository>
    </repositories>

You can enjoy the download speed of the general flight.

The original MAVEN address should be:

http://repo1.maven.org/maven2/

There is another: http://central.maven.org/maven2/

But it was too slow.

Inside the Gradle is configured as follows:

repositories {
    //MAVEN library
    def CN = "http://maven.aliyun.com/nexus/content/groups/public/"
    def abroad = " http://central.maven.org/maven2/"
    //First download jar from URL if not found, look for
    maven {
        URL cn
        in Artifacturls Artifacturls Abroad
    }
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.