-
Notifications
You must be signed in to change notification settings - Fork 6
/
settings.gradle.kts
72 lines (59 loc) · 1.34 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
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
69
70
71
72
rootProject.name = "BlueSlimeCore"
// Utilities
include("shaded")
include("utility")
include("paper-helper")
// BossBar
include("bossbar")
// NMS Abstract
include("nms")
include("nms:abstract")
include("nms:modern-nbt")
// NMS Versions
include("nms:fallback")
include("nms:paper")
include("nms:1_8_R3")
include("nms:1_12_R1")
include("nms:1_16_R3")
include("nms:1_17_R1")
include("nms:1_18_R2")
include("nms:1_19_R3")
include("nms:1_20_R2")
include("nms:1_20_R3")
include("nms:1_20_R4")
include("nms:1_21_R1")
include("nms:1_21_R2")
// NMS Handler
include("nms:scoreboard")
include("nms:handler")
// Factions
include("factions")
include("factions:abstract")
// Factions Versions
include("factions:LegacyFactions")
include("factions:MassiveCore-Factions")
include("factions:SaberFactions")
include("factions:FactionsUUID")
include("factions:FactionsUUID-Legacy")
include("factions:FactionsX")
// Factions Handler
include("factions:handler")
// Regular Modules
include("configuration")
include("language")
include("update")
include("item")
include("menu")
include("plugin")
include("command")
// Core / Plugin
include("core")
// BungeeCord
include("bungeecord")
include("bungeecord:abstract")
// BungeeCord Hooks
include("bungeecord:BungeePerms")
include("bungeecord:LuckPerms")
include("bungeecord:PremiumVanish")
// BungeeCord Core
include("bungeecord:core")