diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2019-11-05 15:24:54 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2019-11-05 15:25:08 +0100 |
commit | cbdb5e7750523218859577a771d2895adb3dca63 (patch) | |
tree | 24385332e1c785d2fb5270263d93f9e05965ffcb /lib | |
parent | f884705088bbf51953e417176cbf4a9dcbc742e7 (diff) | |
parent | 29a429c29a9bb83fc6f5069167d5eef36ecf250d (diff) | |
download | jgit-cbdb5e7750523218859577a771d2895adb3dca63.tar.gz jgit-cbdb5e7750523218859577a771d2895adb3dca63.zip |
Merge branch 'stable-5.2' into stable-5.3
* stable-5.2:
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: I00615958ab6fbdff601e87a9792aba5606cda12a
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/jmh/BUILD | 12 |
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 |