From aa8b1486538e0dac7664dd01ae572131492fefa0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Duarte?= Date: Fri, 3 May 2024 19:05:36 +0100 Subject: [PATCH] fix wiremock-standalone version --- tools/benchmark-cli/build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/benchmark-cli/build.gradle b/tools/benchmark-cli/build.gradle index 579691715d6..d3611c417a6 100644 --- a/tools/benchmark-cli/build.gradle +++ b/tools/benchmark-cli/build.gradle @@ -59,7 +59,8 @@ dependencies { api "com.fasterxml.jackson.core:jackson-databind:${jacksonDatabindVersion}" implementation group: 'org.elasticsearch.client', name: 'elasticsearch-rest-client', version: elasticsearch implementation "org.openjdk.jmh:jmh-core:$jmh" - testImplementation group: 'com.github.tomakehurst', name: 'wiremock-standalone', version: '3.0.3' + testImplementation group: 'org.wiremock', name: 'wiremock-standalone', version: '3.0.4' + testImplementation "junit:junit:4.13.2" }