chore(deps): update dependencies
Signed-off-by: Alan Brault <alan.brault@visus.io>
This commit is contained in:
+12
-8
@@ -1,10 +1,10 @@
|
||||
plugins {
|
||||
kotlin("jvm") version "2.2.21"
|
||||
kotlin("plugin.spring") version "2.2.21"
|
||||
id("org.springframework.boot") version "4.1.0-M2"
|
||||
kotlin("jvm") version "2.4.0"
|
||||
kotlin("plugin.spring") version "2.4.0"
|
||||
id("org.springframework.boot") version "4.1.0-RC1"
|
||||
id("io.spring.dependency-management") version "1.1.7"
|
||||
id("org.jlleitschuh.gradle.ktlint") version "14.2.0"
|
||||
id("tech.mappie.plugin") version "2.2.21-2.1.1"
|
||||
id("tech.mappie.plugin") version "2.4.0-2.4.1"
|
||||
id("com.github.ben-manes.versions") version "0.54.0"
|
||||
}
|
||||
|
||||
@@ -56,7 +56,7 @@ dependencies {
|
||||
// Third-party libs still use Jackson 2.x (see resolutionStrategy below)
|
||||
implementation("tools.jackson.core:jackson-core:3.1.0")
|
||||
implementation("tools.jackson.core:jackson-databind:3.1.0")
|
||||
implementation("tools.jackson.module:jackson-module-kotlin:3.1.3")
|
||||
implementation("tools.jackson.module:jackson-module-kotlin:3.1.4")
|
||||
|
||||
// ════════════════════════════════════════════════════════════════════════════════
|
||||
// Data Persistence (MongoDB)
|
||||
@@ -87,7 +87,7 @@ dependencies {
|
||||
// ════════════════════════════════════════════════════════════════════════════════
|
||||
// Mapping & Utilities
|
||||
// ════════════════════════════════════════════════════════════════════════════════
|
||||
implementation("tech.mappie:mappie-api:2.2.21-2.1.1")
|
||||
implementation("tech.mappie:mappie-api:2.4.0-2.4.1")
|
||||
|
||||
// ════════════════════════════════════════════════════════════════════════════════
|
||||
// UUID Generation
|
||||
@@ -110,7 +110,7 @@ dependencies {
|
||||
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.11.0")
|
||||
|
||||
// Kotlin-native mocking (more idiomatic than Mockito for Kotlin)
|
||||
testImplementation("io.mockk:mockk:1.14.9")
|
||||
testImplementation("io.mockk:mockk:1.14.11")
|
||||
testImplementation("com.ninja-squad:springmockk:5.0.1")
|
||||
|
||||
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
|
||||
@@ -138,12 +138,16 @@ configurations.all {
|
||||
useVersion("2.21.1") // Core Jackson 2.x libraries
|
||||
}
|
||||
}
|
||||
// Force kotlinx-coroutines to 1.11.0 to prevent version conflicts
|
||||
if (requested.group == "org.jetbrains.kotlinx" && requested.name.startsWith("kotlinx-coroutines")) {
|
||||
useVersion("1.11.0")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
kotlin {
|
||||
compilerOptions {
|
||||
freeCompilerArgs.addAll("-Xjsr305=strict", "-Xannotation-default-target=param-property")
|
||||
freeCompilerArgs.addAll("-Xjsr305=strict")
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user