Files
gerrit/lib/jgit/org.eclipse.jgit/BUILD
David Ostrovsky f98a60b35f 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
2018-06-08 19:33:01 +09:00

23 lines
510 B
Python

load("//lib/jgit:jgit.bzl", "jgit_dep")
java_library(
name = "jgit",
data = ["//lib:LICENSE-jgit"],
visibility = ["//visibility:public"],
exports = [jgit_dep("@jgit-lib//jar")],
runtime_deps = [":javaewah"],
)
alias(
name = "jgit-source",
actual = jgit_dep("@jgit-lib//jar:src"),
visibility = ["//visibility:public"],
)
java_library(
name = "javaewah",
data = ["//lib:LICENSE-Apache2.0"],
visibility = ["//visibility:public"],
exports = ["@javaewah//jar"],
)