summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2019-11-05 16:28:06 +0100
committerMatthias Sohn <matthias.sohn@sap.com>2019-11-05 16:31:58 +0100
commitabecc9587f02a7a72b76f06d3bc59f726bc27001 (patch)
tree776081ace5feb61b08f8d2976f28c0195d54b755 /lib
parente8c361906335c439fe8ce0e596c9ad58401ceed8 (diff)
parent97f9bc8e8edc5a68f27d602b0bdcaafc7616d16d (diff)
downloadjgit-abecc9587f02a7a72b76f06d3bc59f726bc27001.tar.gz
jgit-abecc9587f02a7a72b76f06d3bc59f726bc27001.zip
Merge branch 'stable-5.5'
* stable-5.5: 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: If87a13d0f809d9968ad2921b786f4b18e1b494d0 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