-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
27 lines (22 loc) · 1.09 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
rootProject.name = "world-edit-preview"
include("api")
include("plugin")
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
library("worldedit", "com.sk89q.worldedit:worldedit-bukkit:7.2.18")
version("fawe", "2.8.4")
library("fawe-core", "com.fastasyncworldedit", "FastAsyncWorldEdit-Core").versionRef("fawe")
library("fawe-bukkit", "com.fastasyncworldedit", "FastAsyncWorldEdit-Bukkit").versionRef("fawe")
bundle("fawe", listOf("fawe-core", "fawe-bukkit"))
version("minecraft-latest", "1.20.1-R0.1-SNAPSHOT")
library("paper-latest", "io.papermc.paper", "paper-api").versionRef("minecraft-latest")
library("spigot-latest", "io.papermc.paper", "paper-api").versionRef("minecraft-latest")
bundle("minecraft-latest", listOf("paper-latest", "spigot-latest"))
// plugins
plugin("publishdata", "de.chojo.publishdata").version("1.3.0")
plugin("spotless", "com.diffplug.spotless").version("6.24.0")
}
}
}
include("renderer")