summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2019-11-05 15:42:14 +0100
committerMatthias Sohn <matthias.sohn@sap.com>2019-11-05 15:54:48 +0100
commite85664e3f8b5699850e79aafb22d77b3c18c2f9c (patch)
tree15dc5a709deb58d35a970aae016bf6ac96d0d015 /lib
parent2fda4d3983937b7620cfd062d8d949de2f746ebd (diff)
parentcbdb5e7750523218859577a771d2895adb3dca63 (diff)
downloadjgit-e85664e3f8b5699850e79aafb22d77b3c18c2f9c.tar.gz
jgit-e85664e3f8b5699850e79aafb22d77b3c18c2f9c.zip
Merge branch 'stable-5.3' into stable-5.4
* stable-5.3: Run JMH benchmarks using bazel Benchmark for creating files and FileSnapshots Implement benchmark for looking up FileStore of a given Path JMH benchmark for SimpleLruCache Update API problem filters Remove unused API problem filters Silence API errors for new API added since 5.1.0 Change-Id: Ib735c4039e24ec8b045ae2cc81df1e9e5c9fa996 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/jmh/BUILD12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/jmh/BUILD b/lib/jmh/BUILD
new file mode 100644
index 0000000000..deb2a78def
--- /dev/null
+++ b/lib/jmh/BUILD
@@ -0,0 +1,12 @@
+load("@rules_java//java:defs.bzl", "java_library")
+
+java_library(
+ name = "jmh",
+ visibility = ["//visibility:public"],
+ exports = [
+ "@jmh-annotations//jar",
+ "@jmh-core//jar",
+ "@jopt//jar",
+ "@math3//jar",
+ ],
+) \ No newline at end of file