-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
68 lines (56 loc) · 1.62 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
}
rootProject.name = "RSFramework"
include("Library:LightDI")
include(
"Library:ProtoWeaver:Common:API",
"Library:ProtoWeaver:Common:Core"
)
include(
"Library:ProtoWeaver:Bukkit:API",
"Library:ProtoWeaver:Bukkit:Core",
"Library:ProtoWeaver:Bukkit:NMS"
)
include(
"Library:ProtoWeaver:Bungee:API",
"Library:ProtoWeaver:Bungee:Core"
)
include(
"Library:ProtoWeaver:Velocity:API",
"Library:ProtoWeaver:Velocity:Core"
)
include(
"Library:ProtoWeaver:Bukkit:NMS:1_19_R2",
"Library:ProtoWeaver:Bukkit:NMS:1_19_R3",
"Library:ProtoWeaver:Bukkit:NMS:1_20_R1",
"Library:ProtoWeaver:Bukkit:NMS:1_20_R2",
"Library:ProtoWeaver:Bukkit:NMS:1_20_R3",
"Library:ProtoWeaver:Bukkit:NMS:1_20_R4",
"Library:ProtoWeaver:Bukkit:NMS:1_21_R1",
"Library:ProtoWeaver:Bukkit:NMS:1_21_R2",
"Library:ProtoWeaver:Bukkit:NMS:1_21_R3"
)
include("Platform")
include(
"Platform:Bukkit",
"Platform:Bukkit:API",
"Platform:Bukkit:Core",
"Platform:Bukkit:Plugin",
"Platform:Bukkit:NMS"
)
include(
"Platform:Bukkit:NMS:1_19_R2",
"Platform:Bukkit:NMS:1_19_R3",
"Platform:Bukkit:NMS:1_20_R1",
"Platform:Bukkit:NMS:1_20_R2",
"Platform:Bukkit:NMS:1_20_R3",
"Platform:Bukkit:NMS:1_20_R4",
"Platform:Bukkit:NMS:1_21_R1",
"Platform:Bukkit:NMS:1_21_R2",
"Platform:Bukkit:NMS:1_21_R3"
)
include(
"Platform:Velocity",
"Platform:Bungee"
)