KenCommandAPI/bukkit/BUILD
kento2 930ce3ff46
Some checks failed
Build and Deploy artifact / build (push) Failing after 2m51s
.
2026-08-05 22:40:40 +02:00

15 lines
No EOL
395 B
Text

load("@rules_jvm_external//:defs.bzl", "artifact", "java_export")
java_export(
name = "bukkit",
maven_coordinates = "de.kentoj.scrow:kencommandapi-bukkit:0.35-SNAPSHOT",
srcs = glob(["src/main/**/*.java"]),
deps = [
"//core",
artifact("org.jetbrains:annotations"),
artifact("io.papermc.paper:paper-api"),
],
exports = [
"//core",
],
)