-
-
Notifications
You must be signed in to change notification settings - Fork 311
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
46 lines (44 loc) · 1.89 KB
/
settings.gradle.kts
File metadata and controls
46 lines (44 loc) · 1.89 KB
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
43
44
45
46
pluginManagement {
repositories {
// 本地 Maven 仓库
maven(url = uri("$rootDir/localMaven"))
gradlePluginPortal()
// 阿里云云效仓库(Gradle 插件):https://maven.aliyun.com/mvn/guide
maven(url = uri("https://maven.aliyun.com/repository/gradle-plugin"))
// 阿里云云效仓库:https://maven.aliyun.com/mvn/guide
maven(url = uri("https://maven.aliyun.com/repository/public"))
maven(url = uri("https://maven.aliyun.com/repository/google"))
// 华为开源镜像:https://mirrors.huaweicloud.com
maven(url = uri("https://repo.huaweicloud.com/repository/maven"))
// JitPack 远程仓库:https://jitpack.io
maven(url = uri("https://jitpack.io"))
// MavenCentral 远程仓库:https://mvnrepository.com
mavenCentral()
// Google 仓库:https://maven.google.com/web/index.html
google()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
// 本地 Maven 仓库
maven(url = uri("$rootDir/localMaven"))
// 阿里云云效仓库:https://maven.aliyun.com/mvn/guide
maven(url = uri("https://maven.aliyun.com/repository/public"))
maven(url = uri("https://maven.aliyun.com/repository/google"))
// 华为开源镜像:https://mirrors.huaweicloud.com
maven(url = uri("https://repo.huaweicloud.com/repository/maven"))
// JitPack 远程仓库:https://jitpack.io
maven(url = uri("https://jitpack.io"))
// MavenCentral 远程仓库:https://mvnrepository.com
mavenCentral()
// Google 仓库:https://maven.google.com/web/index.html
google()
}
}
include(":app")
include(":library:core")
include(":library:base")
include(":library:smallestWidth")
include(":library:customWidget")
include(":library:umengSdk")