fixed sonarqube issue with hardcoded dependency version
SonarQube Analysis / Build and Analyze (pull_request) Failing after 50s

This commit is contained in:
2026-06-27 03:09:26 +02:00
parent 78b6e04db6
commit 46a86f15d8
+3 -1
View File
@@ -36,6 +36,8 @@ repositories {
extra["springAiVersion"] = "2.0.0" extra["springAiVersion"] = "2.0.0"
const val wiremockVersion = "3.12.0"
dependencies { dependencies {
implementation("org.springframework.boot:spring-boot-starter-data-jpa") implementation("org.springframework.boot:spring-boot-starter-data-jpa")
implementation("org.springframework.boot:spring-boot-starter-session-jdbc") implementation("org.springframework.boot:spring-boot-starter-session-jdbc")
@@ -52,7 +54,7 @@ dependencies {
testImplementation("org.springframework.boot:spring-boot-starter-validation-test") testImplementation("org.springframework.boot:spring-boot-starter-validation-test")
testImplementation("org.springframework.boot:spring-boot-starter-webmvc-test") testImplementation("org.springframework.boot:spring-boot-starter-webmvc-test")
testRuntimeOnly("org.junit.platform:junit-platform-launcher") testRuntimeOnly("org.junit.platform:junit-platform-launcher")
testImplementation("org.wiremock:wiremock-standalone:3.12.0") testImplementation("org.wiremock:wiremock-standalone:$wiremockVersion")
testImplementation("org.springframework.boot:spring-boot-starter-session-jdbc-test")} testImplementation("org.springframework.boot:spring-boot-starter-session-jdbc-test")}
dependencyManagement { dependencyManagement {