Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 593 Bytes

README_cn.md

File metadata and controls

22 lines (17 loc) · 593 Bytes

国内仓库插件

English

使用本插件能够快速添加国内的镜像源到 gralde 项目当中。

plugins {
    id 'com.robothy.cn-repo' version '1.8'
}

build.gradle 中,通过上面代码引用本插件能够达到和下面代码一样的效果。

repositories{
    maven { url 'https://maven.aliyun.com/repository/public/' }
    maven { url 'https://maven.aliyun.com/repository/jcenter/' }
    maven { url 'https://maven.aliyun.com/repository/google/' }
    maven { url 'https://maven.aliyun.com/repository/gradle-plugin/' }
}