-
Notifications
You must be signed in to change notification settings - Fork 26
/
maven.gradle
20 lines (19 loc) · 950 Bytes
/
maven.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
static def addCommonMaven(RepositoryHandler handler) {
// 阿里云云效仓库:https://maven.aliyun.com/mvn/guide
handler.maven { url 'https://maven.aliyun.com/repository/public' }
handler.maven { url 'https://maven.aliyun.com/repository/google' }
// 华为开源镜像:https://mirrors.huaweicloud.com
handler.maven { url 'https://repo.huaweicloud.com/repository/maven' }
// JitPack 远程仓库:https://jitpack.io
handler.maven { url 'https://jitpack.io' }
// MavenCentral 远程仓库:https://mvnrepository.com
handler.mavenCentral()
handler.google()
// noinspection JcenterRepositoryObsolete
handler.jcenter()
// 配置HMS Core SDK的Maven仓地址
handler.maven { url 'https://developer.huawei.com/repo/' }
// 阿里云视频SDK所在的仓库
handler.maven { url "https://maven.aliyun.com/nexus/content/repositories/releases" }
}
ext.addCommonMaven = this.&addCommonMaven