Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
403 B
17 lines
403 B
2 years ago
|
load("@rules_java//java:defs.bzl", "java_binary")
|
||
|
|
||
|
package(
|
||
|
default_visibility = ["//java:__subpackages__"],
|
||
|
)
|
||
|
|
||
|
java_binary(
|
||
|
name = "osgi_wrapper",
|
||
|
srcs = ["OsgiWrapper.java"],
|
||
|
main_class = "com.google.protobuf.osgi.OsgiWrapper",
|
||
|
deps = [
|
||
|
"@maven//:biz_aQute_bnd_biz_aQute_bndlib",
|
||
|
"@maven//:com_google_guava_guava",
|
||
|
"@maven//:info_picocli_picocli",
|
||
|
],
|
||
|
)
|