From 8ae825955b9e0c1a6207ee7e8a2e699167145d34 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 21 Oct 2023 14:41:05 -0400 Subject: [PATCH] Bump com.github.tomakehurst:wiremock from 2.27.2 to 3.0.1 (#11934) * Bump com.github.tomakehurst:wiremock from 2.27.2 to 3.0.1 Bumps [com.github.tomakehurst:wiremock](https://github.com/wiremock/wiremock) from 2.27.2 to 3.0.1. - [Release notes](https://github.com/wiremock/wiremock/releases) - [Commits](https://github.com/wiremock/wiremock/compare/2.27.2...3.0.1) --- updated-dependencies: - dependency-name: com.github.tomakehurst:wiremock dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * Add httpcomponents dependency. * Use var. * Fix package name. --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: asvitkine --- build.gradle | 2 +- http-clients/lobby-client/build.gradle | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index c4d37fce8a6..f9ac9ddf033 100644 --- a/build.gradle +++ b/build.gradle @@ -87,7 +87,7 @@ subprojects { sonatypeGoodiesPrefsVersion = '2.3.7' substanceVersion = '4.5.0' wireMockJunit5Version = '1.3.1' - wireMockVersion = '2.27.2' + wireMockVersion = '3.0.1' xchartVersion = '3.8.5' xmlUnitCore = '2.9.1' xmlUnitMatchers = '2.9.1' diff --git a/http-clients/lobby-client/build.gradle b/http-clients/lobby-client/build.gradle index 9a8b483e024..09bf341053a 100644 --- a/http-clients/lobby-client/build.gradle +++ b/http-clients/lobby-client/build.gradle @@ -8,5 +8,6 @@ dependencies { testImplementation "com.github.tomakehurst:wiremock:$wireMockVersion" testImplementation "com.google.code.gson:gson:$gsonVersion" testImplementation "ru.lanwen.wiremock:wiremock-junit5:$wireMockJunit5Version" + testImplementation "org.apache.httpcomponents:httpclient:$apacheHttpComponentsVersion" testImplementation project(":lib:test-common") }