forked from oddlama/vane
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
26 lines (24 loc) · 912 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
pluginManagement {
repositories {
gradlePluginPortal()
//maven("https://papermc.io/repo/repository/maven-public/")
}
}
rootProject.name = "vane"
// https://docs.gradle.org/current/dsl/org.gradle.api.initialization.Settings.html
// Adds the given projects to the build. Each path in the supplied list is treated as the path of a project to add to
// the build. Note that these path are not file paths, but instead specify the location of the new project in the
// project hierarchy. As such, the supplied paths must use the ':' character as separator (and NOT '/').
include(":vane-admin")
include(":vane-annotations")
include(":vane-bedtime")
include(":vane-core")
include(":vane-enchantments")
include(":vane-permissions")
include(":vane-portals")
include(":vane-proxy-core")
include(":vane-plexmap")
include(":vane-regions")
include(":vane-trifles")
include(":vane-velocity")
include(":vane-waterfall")