make velocity work

This commit is contained in:
kento2 2026-08-03 12:50:38 +02:00
parent 1429286ce8
commit ef32f9dbc4
5 changed files with 66 additions and 83 deletions

View file

@ -0,0 +1,18 @@
load("@rules_jvm_external//:defs.bzl", "artifact", "java_export")
java_export(
name = "velocity",
maven_coordinates = "de.kentoj.scrow:kencommandapi-velocity:0.34-SNAPSHOT",
srcs = glob(["src/main/**/*.java"]),
deps = [
"//kencommandapi-core:core",
artifact("org.projectlombok:lombok"),
artifact("org.jetbrains:annotations"),
artifact("com.velocitypowered:velocity-api"),
],
exports = [
"//kencommandapi-core:core",
],
plugins = [ "//third_party:lombok_plugin" ],
)