From 59403d1dba03173af5170281958a1d943aa0a5b6 Mon Sep 17 00:00:00 2001 From: Paul-Christian Volkmer Date: Mon, 24 Jun 2024 10:18:18 +0200 Subject: [PATCH] chore: update dependency version definitions This will use httpclient5 version as defined within spring boot. --- build.gradle.kts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 329a4f4..1f8d56b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -18,7 +18,7 @@ version = "0.10.0-SNAPSHOT" var versions = mapOf( "bwhc-dto-java" to "0.3.0", "hapi-fhir" to "6.10.5", - "httpclient5" to "5.2.3", + "commons-codec" to "2.26.1", "mockito-kotlin" to "5.3.1", "archunit" to "1.3.0", // Webjars @@ -72,7 +72,7 @@ dependencies { implementation("de.ukw.ccc:bwhc-dto-java:${versions["bwhc-dto-java"]}") implementation("ca.uhn.hapi.fhir:hapi-fhir-base:${versions["hapi-fhir"]}") implementation("ca.uhn.hapi.fhir:hapi-fhir-structures-r4:${versions["hapi-fhir"]}") - implementation("org.apache.httpcomponents.client5:httpclient5:${versions["httpclient5"]}") + implementation("org.apache.httpcomponents.client5:httpclient5") implementation("com.jayway.jsonpath:json-path") implementation("org.webjars:webjars-locator:0.52") implementation("org.webjars.npm:echarts:${versions["echarts"]}") @@ -93,7 +93,7 @@ dependencies { integrationTestImplementation("net.sourceforge.htmlunit:htmlunit") integrationTestImplementation("org.springframework:spring-webflux") // Override dependency version from org.testcontainers:junit-jupiter - CVE-2024-26308, CVE-2024-25710 - integrationTestImplementation("org.apache.commons:commons-compress:1.26.1") + integrationTestImplementation("org.apache.commons:commons-compress:${versions["commons-codec"]}") } tasks.withType {