23 lines
804 B
Text
23 lines
804 B
Text
load("@rules_jvm_external//:defs.bzl", "artifact", "java_export")
|
|
load("//:defs.bzl", "GROUP", "VERSION")
|
|
|
|
java_export(
|
|
name = "bukkit",
|
|
maven_coordinates = GROUP + ":commands-bukkit:" + VERSION,
|
|
srcs = glob(["site/lab0x13/scrow/commands/**/*.java"]),
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//common:common-lib",
|
|
artifact("org.jetbrains:annotations"),
|
|
artifact("com.google.guava:guava"),
|
|
artifact("net.kyori:adventure-api"),
|
|
artifact("com.leakyabstractions:result-api"),
|
|
artifact("com.leakyabstractions:result"),
|
|
artifact("io.papermc.paper:paper-api"),
|
|
],
|
|
exports = [
|
|
"//common:common-lib",
|
|
artifact("com.leakyabstractions:result-api"),
|
|
artifact("com.leakyabstractions:result"),
|
|
]
|
|
)
|