diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2019-11-05 15:07:39 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2019-11-05 15:18:45 +0100 |
commit | 29a429c29a9bb83fc6f5069167d5eef36ecf250d (patch) | |
tree | efa21b7026f687821d618ace78d7a28afdfe05e1 /lib | |
parent | 9328236cfec5669a7424af6efe143e4835cdfd43 (diff) | |
parent | 452c38cd2285df77b831406e7eeab2dc778bdf1c (diff) | |
download | jgit-29a429c29a9bb83fc6f5069167d5eef36ecf250d.tar.gz jgit-29a429c29a9bb83fc6f5069167d5eef36ecf250d.zip |
Merge branch 'stable-5.1' into stable-5.2
* stable-5.1:
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
Remove unused API problem filters
Silence API errors for new API added since 5.1.0
Change-Id: If91c55a192d3b2c441d9c8d414f2e24a7261b1b6
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 |