-
Notifications
You must be signed in to change notification settings - Fork 56
/
settings.gradle
48 lines (45 loc) · 1.16 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
43
44
45
46
47
48
/*
* ************************************************************
* 文件:settings.gradle 模块:ElegantBus 项目:ElegantBus
* 当前修改时间:2022年09月12日 17:58:58
* 上次修改时间:2022年09月12日 17:47:29
* 作者:Cody.yi https://github.com/codyer
*
* 描述:ElegantBus
* Copyright (c) 2022
* ************************************************************
*/
pluginManagement {
repositories {
// 本地仓库
mavenLocal()
maven {
url 'https://jitpack.io'
allowInsecureProtocol = true
}
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
// 本地仓库
mavenLocal()
// 当上传到远端仓库
// maven {
// url("")
// credentials {
// username = ""
// password = ""
// }
// }
google()
mavenCentral()
}
}
rootProject.name = "ElegantBus"
include ':core'
include ':lib', ':compiler'
include ':ipc'