f98a60b35f
Recent Bazel versions support dash character in external repository names. Consistently use them with one exception: javax_inject. This is needed to match the name in the rules_closure. Change-Id: I1e75690fe1ee2ab32fffe07c0c30dbed84753960
27 lines
526 B
Python
27 lines
526 B
Python
java_library(
|
|
name = "sshd",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = [
|
|
":eddsa",
|
|
"@sshd//jar",
|
|
],
|
|
runtime_deps = [":core"],
|
|
)
|
|
|
|
java_library(
|
|
name = "eddsa",
|
|
data = ["//lib:LICENSE-CC0-1.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = [
|
|
"@eddsa//jar",
|
|
],
|
|
)
|
|
|
|
java_library(
|
|
name = "core",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@mina-core//jar"],
|
|
)
|