KenCommandAPI/velocity/BUILD
kento2 81158adcfe
Some checks failed
Build and Deploy artifact / build (push) Failing after 30s
.
2026-08-06 13:45:22 +02:00

16 lines
No EOL
435 B
Text

load("@rules_jvm_external//:defs.bzl", "artifact", "java_export")
load("//:defs.bzl", "GROUP", "VERSION")
java_export(
name = "velocity",
maven_coordinates = GROUP + ":kencommandapi-velocity:" + VERSION,
srcs = glob(["src/main/**/*.java"]),
deps = [
"//core",
artifact("org.jetbrains:annotations"),
artifact("com.velocitypowered:velocity-api"),
],
exports = [
"//core",
],
)