-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsettings.gradle.kts
34 lines (30 loc) · 1.14 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
pluginManagement {
repositories {
maven(url = "https://maven.aliyun.com/repository/gradle-plugin")
maven(url = "https://plugins.gradle.org/m2/")
gradlePluginPortal()
}
}
include("subProjects:nice-log")
findProject(":subProjects:nice-log")?.name = "nice-log"
include("subProjects:nice-tools")
findProject(":subProjects:nice-tools")?.name = "nice-tools"
include("subProjects:nice-crypto")
findProject(":subProjects:nice-crypto")?.name = "nice-crypto"
include("subProjects:nice-scaffold")
findProject(":subProjects:nice-scaffold")?.name = "nice-scaffold"
include("apps:app-gateway")
findProject(":apps:app-gateway")?.name = "app-gateway"
include("apps:app-login")
findProject(":apps:app-login")?.name = "app-login"
include("apps:app-gameserver")
findProject(":apps:app-gameserver")?.name = "app-gameserver"
include("lib-core")
include("apps:lib-core")
findProject(":apps:lib-core")?.name = "lib-core"
include("apps:app-allinone")
findProject(":apps:app-allinone")?.name = "app-allinone"
include("apps:app-api")
findProject(":apps:app-api")?.name = "app-api"
include("apps:app-battle")
findProject(":apps:app-battle")?.name = "app-battle"