-
Notifications
You must be signed in to change notification settings - Fork 9
/
settings.gradle
42 lines (40 loc) · 1.25 KB
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
pluginManagement {
repositories {
gradlePluginPortal()
google()
maven { url "https://nexus2.tingyun.com/nexus/content/repositories/snapshots/" }// 添加基调听云仓库
maven {
url 'https://developer.huawei.com/repo/'
}
// 听云
maven {
url "https://nexus2.tingyun.com/nexus/content/repositories/snapshots/"
}
maven {
url uri("${rootProject.projectDir}/repo")
}
maven { url 'https://maven.aliyun.com/repository/public/' }
}
}
plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.5.0'
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
maven { url "https://nexus2.tingyun.com/nexus/content/repositories/snapshots/" }// 添加基调听云仓库
maven {
url 'https://developer.huawei.com/repo/'
}
// 听云
maven {
url "https://nexus2.tingyun.com/nexus/content/repositories/snapshots/"
}
maven {
url uri("${rootProject.projectDir}/repo")
}
maven { url 'https://maven.aliyun.com/repository/public/' }
}
}
include ':app'