17 lines
No EOL
542 B
Text
17 lines
No EOL
542 B
Text
load("@rules_jvm_external//:defs.bzl", "artifact", "java_export")
|
|
|
|
java_export(
|
|
name = "bukkit",
|
|
maven_coordinates = "de.kentoj.scrow:kencommandapi-bukkit:0.34-SNAPSHOT",
|
|
srcs = glob(["src/main/**/*.java"]),
|
|
deps = [
|
|
"//kencommandapi-core:core",
|
|
artifact("org.projectlombok:lombok"),
|
|
artifact("org.jetbrains:annotations"),
|
|
artifact("io.papermc.paper:paper-api:[26.2.build,)"),
|
|
],
|
|
exports = [
|
|
"//kencommandapi-core:core",
|
|
],
|
|
plugins = [ "//third_party:lombok_plugin" ],
|
|
) |