forked from alkarinv/BattleArena
-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
settings.gradle.kts
35 lines (29 loc) · 905 Bytes
/
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
rootProject.name = "BattleArena"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
dependencyResolutionManagement {
repositories {
mavenCentral()
// Spigot
maven("https://hub.spigotmc.org/nexus/content/groups/public/")
// Paper, Velocity
maven("https://repo.papermc.io/repository/maven-public")
}
}
// Base plugin
include("plugin")
// Default modules
include("module:arena-restoration")
include("module:auto-arena")
include("module:boundary-enforcer")
include("module:classes")
include("module:duels")
include("module:hologram-integration")
include("module:items-integration")
include("module:one-in-the-chamber")
include("module:party-integration")
include("module:placeholderapi-integration")
include("module:scoreboards")
include("module:team-colors")
include("module:team-heads")
include("module:tournaments")
include("module:vault-integration")