-
Notifications
You must be signed in to change notification settings - Fork 136
/
settings.gradle.kts
43 lines (39 loc) · 1.01 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
43
/*
* Copyright (c) 2022 NetEase, Inc. All rights reserved.
* Use of this source code is governed by a MIT license that can be found in the LICENSE file.
*/
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
maven {
setUrl("https://oss.sonatype.org/content/repositories/snapshots/")
}
maven {
setUrl("https://developer.huawei.com/repo/")
}
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven {
setUrl("https://oss.sonatype.org/content/repositories/snapshots/")
}
maven {
setUrl("https://developer.huawei.com/repo/")
}
}
}
rootProject.name = "im-uikit"
include(":app")
include(":common-ui")
include(":aisearchkit")
include(":conversationkit-ui")
include(":teamkit-ui")
include(":contactkit-ui")
include(":chatkit-ui")
include(":locationkit")