-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
42 lines (40 loc) · 1.21 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
37
38
39
40
41
42
pluginManagement {
repositories {
google()
gradlePluginPortal()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
maven {
url = uri("https://packages.aliyun.com/maven/repository/2418478-release-GhmPUt/")
credentials {
username = "609399173a10edbf367f5264"
password = "=RTs0bvMruGT"
}
}
google()
mavenCentral()
maven(url = "https://jitpack.io")
flatDir {
dirs("libs")
}
}
/**
* 别名必须由一系列标识符组成,由破折号 ( -, 推荐)、下划线 ( _) 或点 ( .) 分隔。标识符本身必须由 ascii 字符组成,最好是小写,最后是数字。
* guava是一个有效的别名
* groovy-core是一个有效的别名
* commons-lang3是一个有效的别名
* androidx.awesome.lib也是一个有效的别名
*/
versionCatalogs {
create("libs") {
from("io.github.chawloo:VersionControlPlugin:1.5.3")
}
}
}
rootProject.name = "MultiLevelSelector"
include(":example")
include(":MultiLevelSelector")