bazeling real hard today
This commit is contained in:
parent
5cb75791e7
commit
80d9b07f0c
45 changed files with 426 additions and 718 deletions
23
core-lib/BUILD
Normal file
23
core-lib/BUILD
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
load("@rules_jvm_external//:defs.bzl", "artifact")
|
||||
load("@rules_java//java:java_library.bzl", "java_library")
|
||||
|
||||
shared_deps = [
|
||||
"//third_party:common_deps",
|
||||
artifact("de.kentoj.scrow:kencommandapi-core"),
|
||||
artifact("net.kyori:adventure-api"),
|
||||
artifact("net.kyori:adventure-text-minimessage"),
|
||||
artifact("org.jdbi:jdbi3-core"),
|
||||
artifact("org.mongodb:bson"),
|
||||
]
|
||||
|
||||
java_library(
|
||||
name = "core",
|
||||
srcs = glob(["src/main/**/*.java"]),
|
||||
visibility = ["//visibility:public"],
|
||||
deps = shared_deps + [
|
||||
artifact("org.jdbi:jdbi3-postgres"),
|
||||
artifact("io.nats:jnats"),
|
||||
],
|
||||
exports = shared_deps,
|
||||
plugins = [ "//third_party:lombok_plugin" ],
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue