You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by je...@apache.org on 2022/02/18 18:21:51 UTC

[geode-benchmarks] branch develop updated: Fix Jedis version to the version defined by benchmarks

This is an automated email from the ASF dual-hosted git repository.

jensdeppe pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git


The following commit(s) were added to refs/heads/develop by this push:
     new d1ea34e  Fix Jedis version to the version defined by benchmarks
d1ea34e is described below

commit d1ea34e37f8759643e26c429aaf4e2b8ec3247bb
Author: Jens Deppe <jd...@vmware.com>
AuthorDate: Fri Feb 18 10:18:32 2022 -0800

    Fix Jedis version to the version defined by benchmarks
    
    - Develop has moved to Jedis 4.1.1 which requires code changes here.
      Since benchmark runs against the 'baseline' and develop both just use
      benchmarks at develop the benchmark code cannot be updated until the
      baseline is moved beyond the Jedis 4.1.1 change.
---
 geode-benchmarks/build.gradle | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/geode-benchmarks/build.gradle b/geode-benchmarks/build.gradle
index 53280be..5aed353 100644
--- a/geode-benchmarks/build.gradle
+++ b/geode-benchmarks/build.gradle
@@ -59,7 +59,9 @@ dependencies {
   geodeVersion = configurations.geodeVersionResolver.resolvedConfiguration.resolvedArtifacts.find {it.name == 'geode-core'}.moduleVersion.id.version
   logger.info("Building with Geode ${geodeVersion}.")
 
-  implementation platform("org.apache.geode:geode-all-bom:${geodeVersion}")
+  implementation platform("org.apache.geode:geode-all-bom:${geodeVersion}") {
+    exclude group: 'redis.clients'
+  }
 
   implementation(project(':harness'))