KenCommandAPI/kencommandapi-core/BUILD
2026-08-02 22:02:19 +02:00

18 lines
No EOL
655 B
Text

load("@rules_jvm_external//:defs.bzl", "artifact", "java_export")
java_export(
name = "core",
maven_coordinates = "de.kentoj.scrow:kencommandapi-core:0.34-SNAPSHOT",
srcs = glob(["src/main/**/*.java"]),
visibility = ["//visibility:public"],
deps = [
artifact("org.projectlombok:lombok"),
artifact("com.leakyabstractions:result-api"),
artifact("com.leakyabstractions:result"),
artifact("org.jetbrains:annotations"),
artifact("com.google.guava:guava"),
artifact("org.slf4j:slf4j-api"),
artifact("net.kyori:adventure-api"),
],
plugins = [ "//third_party:lombok_plugin" ],
)