-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
36 lines (35 loc) · 1.06 KB
/
settings.gradle.kts
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
dependencyResolutionManagement {
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenLocal()
// 原生镜像
mavenCentral()
google()
maven("https://jitpack.io") {
name = "jetpack"
}
// 腾讯云镜像
// https://cloud.tencent.com/document/product/213/8623
maven("https://mirrors.cloud.tencent.com/nexus/repository/maven-public/") {
name = "qCloudMirrors"
}
// 阿里云镜像
// https://help.aliyun.com/document_detail/102512.html
maven("https://maven.aliyun.com/repository/central") {
name = "aliMirrors-central"
}
maven("https://maven.aliyun.com/repository/google") {
name = "aliMirrors-google"
}
maven("http://maven.aliyun.com/nexus/content/repositories/releases") {
name = "aliyun"
isAllowInsecureProtocol = true
}
}
}
include(
":app",
"library",
":script",
)