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
10 lines
266 B
Python
10 lines
266 B
Python
load("//lib/jgit:jgit.bzl", "jgit_dep")
|
|
|
|
java_library(
|
|
name = "jgit-servlet",
|
|
data = ["//lib:LICENSE-jgit"],
|
|
visibility = ["//visibility:public"],
|
|
exports = [jgit_dep("@jgit-servlet//jar")],
|
|
runtime_deps = ["//lib/jgit/org.eclipse.jgit:jgit"],
|
|
)
|