bazeling real hard today

This commit is contained in:
kento2 2026-08-03 22:07:40 +02:00
parent 5cb75791e7
commit 80d9b07f0c
45 changed files with 426 additions and 718 deletions

15
core-velocity-impl/BUILD Normal file
View file

@ -0,0 +1,15 @@
load("@rules_java//java:java_binary.bzl", "java_binary")
load("@rules_jvm_external//:defs.bzl", "artifact")
java_binary(
name = "core-velocity-impl",
srcs = glob(["src/main/**/*.java"]),
main_class = "none",
resources = glob(["src/main/resources/**"], allow_empty = True),
deps = [
"//core-velocity-api",
artifact("com.velocitypowered:velocity-api"),
artifact("io.nats:jnats"),
],
plugins = [ "//third_party:lombok_plugin" ],
)