diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2021-09-27 15:53:30 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2021-09-27 16:50:15 +0200 |
commit | 283c23012f9bfd4fd83c6a6ec28e9d2149efb514 (patch) | |
tree | c71980f20fd78ab6c0883c09032b22ef8147c2c8 /org.eclipse.jgit.benchmarks/BUILD | |
parent | c70c0acb4752f00672e3b856539587e4977bfaea (diff) | |
download | jgit-283c23012f9bfd4fd83c6a6ec28e9d2149efb514.tar.gz jgit-283c23012f9bfd4fd83c6a6ec28e9d2149efb514.zip |
Fix running benchmarks from bazel
add missing dependency to
- javaewah
- slf4j-api
Change-Id: I28dc982791b32f10d20b2fd0671aa8d2514a0fb3
Diffstat (limited to 'org.eclipse.jgit.benchmarks/BUILD')
-rw-r--r-- | org.eclipse.jgit.benchmarks/BUILD | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/org.eclipse.jgit.benchmarks/BUILD b/org.eclipse.jgit.benchmarks/BUILD index 7e331b101a..ecd268c4b8 100644 --- a/org.eclipse.jgit.benchmarks/BUILD +++ b/org.eclipse.jgit.benchmarks/BUILD @@ -8,6 +8,8 @@ jmh_java_benchmarks( name = "benchmarks", srcs = SRCS, deps = [ + "//lib:javaewah", + "//lib:slf4j-api", "//org.eclipse.jgit:jgit", ], ) |