blob: 02a136554d2590d338ef7b1bc77e13ab3bd066a5 [file] [log] [blame] [edit]
load("@rules_jvm_external//:defs.bzl", "artifact")
java_library(
name = "protobuf",
srcs = glob([
"src/main/java/**/*.java",
]),
visibility = ["//visibility:public"],
deps = [
"//api",
"//protobuf-lite",
"@com_google_protobuf//:protobuf_java",
artifact("com.google.api.grpc:proto-google-common-protos"),
artifact("com.google.code.findbugs:jsr305"),
artifact("com.google.errorprone:error_prone_annotations"),
artifact("com.google.guava:guava"),
],
)