This repository was archived by the owner on Dec 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
47 lines (35 loc) · 1.81 KB
/
settings.gradle.kts
File metadata and controls
47 lines (35 loc) · 1.81 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
47
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
}
rootProject.name = "surf-cloud"
val ci = System.getenv("CI")?.toBoolean() == true
include("surf-cloud-core")
include("surf-cloud-bukkit")
include("surf-cloud-velocity")
include("surf-cloud-standalone")
include("surf-cloud-standalone-launcher")
include("surf-cloud-api:surf-cloud-api-common")
findProject(":surf-cloud-api:surf-cloud-api-common")?.name = "surf-cloud-api-common"
include("surf-cloud-api:surf-cloud-api-client")
findProject(":surf-cloud-api:surf-cloud-api-client")?.name = "surf-cloud-api-client"
include("surf-cloud-api:surf-cloud-api-server")
findProject(":surf-cloud-api:surf-cloud-api-server")?.name = "surf-cloud-api-server"
include("surf-cloud-core:surf-cloud-core-common")
findProject(":surf-cloud-core:surf-cloud-core-common")?.name = "surf-cloud-core-common"
include("surf-cloud-core:surf-cloud-core-client")
findProject(":surf-cloud-core:surf-cloud-core-client")?.name = "surf-cloud-core-client"
include("surf-cloud-api:surf-cloud-api-client:surf-cloud-api-client-common")
findProject(":surf-cloud-api:surf-cloud-api-client:surf-cloud-api-client-common")?.name =
"surf-cloud-api-client-common"
include("surf-cloud-api:surf-cloud-api-client:surf-cloud-api-client-paper")
findProject(":surf-cloud-api:surf-cloud-api-client:surf-cloud-api-client-paper")?.name =
"surf-cloud-api-client-paper"
include("surf-cloud-api:surf-cloud-api-client:surf-cloud-api-client-velocity")
findProject(":surf-cloud-api:surf-cloud-api-client:surf-cloud-api-client-velocity")?.name =
"surf-cloud-api-client-velocity"
include("surf-cloud-bom")
if (!ci) {
include(":surf-cloud-test-plugin:surf-cloud-test-standalone")
include(":surf-cloud-test-plugin:surf-cloud-test-core")
include("surf-cloud-test-plugin:surf-cloud-test-paper")
}