关于使用阿里云MAVEN镜像仓库

由于国内的某些不可明确的原因 国内连接google的时候十分慢,使得看github上的项目十分慢,这里我们可以修改build.gradle下的文件来使用阿里云仓库同步 会更快:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {

        maven {
            url ‘http://maven.aliyun.com/nexus/content/groups/public/‘
        }
        google()
        jcenter()

    }
    dependencies {
        classpath ‘com.android.tools.build:gradle:3.4.0‘

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        maven {
            url ‘http://maven.aliyun.com/nexus/content/groups/public/‘
        }
        google()
        jcenter()

    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

这样就可以使用阿里云的maven仓库了,更加方便的查看别人的demo或者项目了

原文地址:https://www.cnblogs.com/wushenjiang/p/12299342.html

时间: 2024-10-17 11:35:16

关于使用阿里云MAVEN镜像仓库的相关文章

maven入门(11)配置阿里云的镜像仓库

每次update Maven Project 的时候,看着进度条寸步难行,心里憋得十分难受,明显阻碍我学习的热情. 今天看到阿里云搭建了一个国内镜像 http://maven.aliyun.com/,听说跑起来的速度不是一般的快,于是决定亲自试一试,简直不能更赞!好了废话不多说,奉上我的 settings.xml 配置文件供大家参考. 添加的东东很少,只需在mirrors节点里面加上一个mirror子节点,内容如下: <mirror> <!--This sends everything

阿里云maven镜像地址

最近配置maven,选择中央仓库地址是一个十分头疼的问题,oschina速度也不快,找了很久发现了阿里云的国内maven中央仓库速度爆炸.setting.xml文件镜像配置如下: <mirror> <id>nexus-aliyun</id> <mirrorOf>*</mirrorOf> <name>Nexus aliyun</name> <url>http://maven.aliyun.com/nexus/co

阿里云私有镜像仓库创建

1,登录阿里云账号-容器镜像服务-创建镜像仓库 2,登录切记要写完整的目录仓库命不要错不然要报错 docker login --username=阿里云名字 registry.cn-hangzhou.aliyuncs.com/镜像仓库名(test_jiangxin)密码 3,例 docker tag daocloud.io/library/centos registry.cn-hangzhou.aliyuncs.com/test_jiangxin/centos:centos7.4docker p

阿里云maven中央仓库

1.配置文件路径:config/settings.xml 2.<mirrors>镜像集合中添加镜像 1 <mirror> 2 <id>alimaven</id> 3 <name>aliyun maven</name> 4 <url>http://maven.aliyun.com/nexus/content/groups/public/</url> 5 <mirrorOf>central</mi

收藏!阿里云maven镜像配置文件

<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding

阿里云maven加速和docker加速

maven加速 maven仓库用过的人都知道,国内有多么的悲催.还好有比较好用的镜像可以使用,尽快记录下来.速度提升100倍. http://maven.aliyun.com/nexus/#view-repositories;public~browsestorage 在maven的settings.xml 文件里配置mirrors的子节点,添加如下mirror <mirror> <id>nexus-aliyun</id> <mirrorOf>*</mi

.Net Core in Docker - 使用阿里云Codepipeline及阿里云容器镜像服务实现持续集成(CI)

前面已经介绍过了 .Net Core 程序发布到 Docker 容器的内容.但是每次通过 SSH 链接到服务器敲命令,运行脚本也是挺麻烦的一件事.程序员是最懒的,能让电脑解决的问题绝不手动解决,如果当我们push一次代码后自动build代码,自动跑单元测试,如果测试通过,自动发布程序,如果失败就发邮件通知管理员,这样的话该多美好.为了达成这个目标于是持续集成(CI)持续交付/部署(CD)就被发明出来了.CICD领域有个大名鼎鼎的工具:Jenkins,但是这次不使用它.如果你使用阿里云的话,阿里云

一:配置使用阿里云Maven库

鉴于国内的网络环境,从默认 Maven 库下载 jar 包是非常的痛苦. 速度慢就不说了,还经常是下不下来,然后一运行就是各种 ClassNotFoundException,然后你得找到残留文件删掉重新下,或者下载到本地然后通过命令添加到本地库中. 当然土豪公司自建仓库的就另当别论啦. 今天就给大家安利下阿里云的 Maven 库:maven.aliyun.com.秒下 jar 包! 全局配置 在本地库 .m2 的目录下创建一个 settings.xml 文件,然后添加配置: <repositor

阿里云-容器镜像服务

1.阿里云容器镜像服务核心包括: 仓库,命名空间 ,授权管理 命名空间: 可以分类管理的不同的docker镜像: 授权: 拉取镜像的时候需要指定的账号和密码: 有关镜像的命令步骤: 1. 登录阿里云Docker Registry $ sudo docker login --username=chris_dev01 registry.cn-hangzhou.aliyuncs.com 用于登录的用户名为阿里云账号全名,密码为开通服务时设置的密码. 您可以在访问凭证页面修改凭证密码. 2. 从Regi