This commit is contained in:
kento2 2026-08-05 21:40:52 +02:00
parent c60f19cafc
commit 2ea2eb5d1e
114 changed files with 671 additions and 609 deletions

15
BUILD Normal file
View file

@ -0,0 +1,15 @@
load("@rules_shell//shell:sh_binary.bzl", "sh_binary")
sh_binary(
name = "dev-server",
data = ["//core-bukkit:plugin"],
env = {
"MC_VERSION": "26.2",
"BUILT_PLUGIN": "bazel-bin/core-bukkit/plugin.jar",
},
args = [
"LuckPerms.jar=https://download.luckperms.net/1652/bukkit/loader/LuckPerms-Bukkit-5.5.65.jar",
"ViaVersion.jar=https://hangarcdn.papermc.io/plugins/ViaVersion/ViaVersion/versions/5.11.0/PAPER/ViaVersion-5.11.0.jar",
"ViaBackwards.jar=https://hangarcdn.papermc.io/plugins/ViaVersion/ViaBackwards/versions/5.11.0/PAPER/ViaBackwards-5.11.0.jar",
],
srcs = ["runDevServer.sh"],
)