All checks were successful
Build and Deploy artifact / build (push) Successful in 1m31s
21 lines
No EOL
717 B
Text
21 lines
No EOL
717 B
Text
load("@rules_jvm_external//:defs.bzl", "artifact", "java_export")
|
|
load("//:defs.bzl", "GROUP", "VERSION")
|
|
|
|
java_export(
|
|
name = "core",
|
|
maven_coordinates = GROUP + ":kencommandapi-core:" + VERSION,
|
|
srcs = glob(["src/main/**/*.java"]),
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
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"),
|
|
],
|
|
exports = [
|
|
artifact("com.leakyabstractions:result-api"),
|
|
artifact("com.leakyabstractions:result"),
|
|
],
|
|
) |