This commit is contained in:
kento2 2026-08-10 00:31:28 +02:00
parent 13ced30434
commit a9b7f47494
35 changed files with 1024 additions and 123 deletions

View file

@ -16,21 +16,24 @@ java_library(
artifact("de.kentoj.scrow:kencommandapi-bukkit"),
artifact("org.mongodb:bson"),
],
neverlink = True,
)
java_binary(
name = "_plugin",
srcs = glob(["plugin/main/java/**/*.java"]),
srcs = glob(["plugin/main/java/**/*.java", "api/main/java/**/*.java"]),
create_executable = False,
resources = glob(["plugin/main/resources/**"]),
resource_strip_prefix = "core/bukkit/plugin/main/resources",
deps = [
":api",
"//core/common",
artifact("de.kentoj.scrow:kencommandapi-bukkit"),
artifact("net.luckperms:api"),
artifact("io.papermc.paper:paper-api"),
artifact("io.nats:jnats"),
artifact("net.kyori:adventure-key:5.2.0"),
artifact("org.postgresql:postgresql"),
artifact("org.mongodb:bson"),
],
)