Bazel: Harmonize names of external repositories

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
This commit is contained in:
David Ostrovsky
2018-06-08 09:16:50 +02:00
committed by David Pursehouse
parent 00bef8f13d
commit e1359a35e1
39 changed files with 199 additions and 199 deletions

View File

@@ -5,6 +5,6 @@ java_library(
testonly = 1,
data = ["//lib:LICENSE-DO_NOT_DISTRIBUTE"],
visibility = ["//visibility:public"],
exports = [jgit_dep("@jgit_junit//jar")],
exports = [jgit_dep("@jgit-junit//jar")],
runtime_deps = ["//lib/jgit/org.eclipse.jgit:jgit"],
)