1
0
mirror of https://github.com/pcvolkmer/etl-processor.git synced 2025-04-19 17:26:51 +00:00

chore: update Spring Boot

This commit is contained in:
Paul-Christian Volkmer 2025-03-09 09:24:28 +01:00
parent 91e2cf5ef1
commit 280fbd445e

View File

@ -5,7 +5,7 @@ import org.springframework.boot.gradle.tasks.bundling.BootBuildImage
plugins { plugins {
war war
id("org.springframework.boot") version "3.3.8" id("org.springframework.boot") version "3.3.9"
id("io.spring.dependency-management") version "1.1.7" id("io.spring.dependency-management") version "1.1.7"
kotlin("jvm") version "1.9.25" kotlin("jvm") version "1.9.25"
kotlin("plugin.spring") version "1.9.25" kotlin("plugin.spring") version "1.9.25"
@ -19,7 +19,6 @@ var versions = mapOf(
"bwhc-dto-java" to "0.3.0", "bwhc-dto-java" to "0.3.0",
"hapi-fhir" to "7.6.0", "hapi-fhir" to "7.6.0",
"commons-compress" to "1.26.2", "commons-compress" to "1.26.2",
"commons-io" to "2.17.0",
"mockito-kotlin" to "5.4.0", "mockito-kotlin" to "5.4.0",
"archunit" to "1.3.0", "archunit" to "1.3.0",
// Webjars // Webjars
@ -79,8 +78,6 @@ dependencies {
implementation("org.webjars:webjars-locator:${versions["webjars-locator"]}") implementation("org.webjars:webjars-locator:${versions["webjars-locator"]}")
implementation("org.webjars.npm:echarts:${versions["echarts"]}") implementation("org.webjars.npm:echarts:${versions["echarts"]}")
implementation("org.webjars.npm:htmx.org:${versions["htmx.org"]}") implementation("org.webjars.npm:htmx.org:${versions["htmx.org"]}")
// Override dependecy version from ca.uhn.hapi.fhir:hapi-fhir-base - CVE-2024-47554
implementation("commons-io:commons-io:${versions["commons-io"]}")
runtimeOnly("org.mariadb.jdbc:mariadb-java-client") runtimeOnly("org.mariadb.jdbc:mariadb-java-client")
runtimeOnly("org.postgresql:postgresql") runtimeOnly("org.postgresql:postgresql")