This commit is contained in:
kento2 2026-08-30 17:02:37 +02:00
parent 855050c2d1
commit 77decae10c
74 changed files with 1190 additions and 861 deletions

23
minigame/extraction/BUILD Normal file
View file

@ -0,0 +1,23 @@
load("@rules_jvm_external//:defs.bzl", "artifact")
load("@rules_java//java:java_binary.bzl", "java_binary")
java_binary(
name = "_plugin",
srcs = glob(["site/lab0x13/scrow/**/*.java"]),
create_executable = False,
resources = glob(["resources/**"]),
resource_strip_prefix = "minigame/extraction/resources",
deps = [
"//core/bukkit:api",
"//core/configurator:lib",
artifact("io.papermc.paper:paper-api"),
],
)
genrule(
name = "plugin",
srcs = [":_plugin_deploy.jar"],
outs = ["plugin.jar"],
cmd = "cp $< $@",
visibility = ["//visibility:public"],
)