diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2019-11-05 16:10:48 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2019-11-05 16:23:26 +0100 |
commit | 97f9bc8e8edc5a68f27d602b0bdcaafc7616d16d (patch) | |
tree | 8eaf4a4b1440af8b420d918841e0a22a60c65567 /WORKSPACE | |
parent | 67f44ce9febe52b1f927e7d7a610977fea39d12f (diff) | |
parent | e85664e3f8b5699850e79aafb22d77b3c18c2f9c (diff) | |
download | jgit-97f9bc8e8edc5a68f27d602b0bdcaafc7616d16d.tar.gz jgit-97f9bc8e8edc5a68f27d602b0bdcaafc7616d16d.zip |
Merge branch 'stable-5.4' into stable-5.5
* stable-5.4:
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: I071536d630a95e89f5bbbf965a1571b9f5eb81ee
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'WORKSPACE')
-rw-r--r-- | WORKSPACE | 30 |
1 files changed, 30 insertions, 0 deletions
@@ -22,6 +22,36 @@ load( "maven_jar", ) +JMH_VERS = "1.21" + +maven_jar( + name = "jmh-core", + artifact = "org.openjdk.jmh:jmh-core:" + JMH_VERS, + attach_source = False, + sha1 = "442447101f63074c61063858033fbfde8a076873", +) + +maven_jar( + name = "jmh-annotations", + artifact = "org.openjdk.jmh:jmh-generator-annprocess:" + JMH_VERS, + attach_source = False, + sha1 = "7aac374614a8a76cad16b91f1a4419d31a7dcda3", +) + +maven_jar( + name = "jopt", + artifact = "net.sf.jopt-simple:jopt-simple:5.0.4", + attach_source = False, + sha1 = "4fdac2fbe92dfad86aa6e9301736f6b4342a3f5c", +) + +maven_jar( + name = "math3", + artifact = "org.apache.commons:commons-math3:3.6.1", + attach_source = False, + sha1 = "e4ba98f1d4b3c80ec46392f25e094a6a2e58fcbf", +) + maven_jar( name = "eddsa", artifact = "net.i2p.crypto:eddsa:0.3.0", |