e1359a35e1
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
77 lines
1.5 KiB
Python
77 lines
1.5 KiB
Python
java_library(
|
|
name = "servlet",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@jetty-servlet//jar"],
|
|
runtime_deps = [":security"],
|
|
)
|
|
|
|
java_library(
|
|
name = "security",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@jetty-security//jar"],
|
|
runtime_deps = [":server"],
|
|
)
|
|
|
|
java_library(
|
|
name = "servlets",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@jetty-servlets//jar"],
|
|
)
|
|
|
|
java_library(
|
|
name = "server",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = [
|
|
":continuation",
|
|
":http",
|
|
"@jetty-server//jar",
|
|
],
|
|
)
|
|
|
|
java_library(
|
|
name = "jmx",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = [
|
|
":continuation",
|
|
":http",
|
|
"@jetty-jmx//jar",
|
|
],
|
|
)
|
|
|
|
java_library(
|
|
name = "continuation",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = ["@jetty-continuation//jar"],
|
|
)
|
|
|
|
java_library(
|
|
name = "http",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
visibility = ["//visibility:public"],
|
|
exports = [
|
|
":io",
|
|
"@jetty-http//jar",
|
|
],
|
|
)
|
|
|
|
java_library(
|
|
name = "io",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
exports = [
|
|
":util",
|
|
"@jetty-io//jar",
|
|
],
|
|
)
|
|
|
|
java_library(
|
|
name = "util",
|
|
data = ["//lib:LICENSE-Apache2.0"],
|
|
exports = ["@jetty-util//jar"],
|
|
)
|