* stable-2.15:
Bazel: Add fixes for --incompatible_load_{java|python}_rules_from_bzl
Bazel: Bump minimum supported version to 0.29.0
Lucene index configuration and docs.
Change-Id: I6c597cbc89fafece83c374e9b36c4c4c0126704f
12 lines
342 B
Python
12 lines
342 B
Python
load("@rules_java//java:defs.bzl", "java_library")
|
|
load("//lib/jgit:jgit.bzl", "jgit_dep")
|
|
|
|
java_library(
|
|
name = "junit",
|
|
testonly = True,
|
|
data = ["//lib:LICENSE-DO_NOT_DISTRIBUTE"],
|
|
visibility = ["//visibility:public"],
|
|
exports = [jgit_dep("@jgit-junit//jar")],
|
|
runtime_deps = ["//lib/jgit/org.eclipse.jgit:jgit"],
|
|
)
|