Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ plugins {
id("org.springdoc.openapi-gradle-plugin") version "1.9.0" apply false
// Kotlin-native 커버리지 — 루트에 적용하고 코드 모듈을 kover(...) 의존으로 묶어
// 멀티모듈 합산 리포트(XML/HTML)를 만든다. JaCoCo 대비 Kotlin inline/coroutine 처리에 정확.
id("org.jetbrains.kotlinx.kover") version "0.8.3"
id("org.jetbrains.kotlinx.kover") version "0.9.8"
}

allprojects {
Expand Down
4 changes: 2 additions & 2 deletions e2e-tests/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ dependencies {
testImplementation("org.springframework.boot:spring-boot-starter-data-jpa")
testImplementation("org.springframework.boot:spring-boot-testcontainers")
testImplementation("org.springframework.kafka:spring-kafka-test")
testImplementation("org.awaitility:awaitility:4.2.2")
testImplementation("org.awaitility:awaitility:4.3.0")
testImplementation("org.testcontainers:junit-jupiter")
testImplementation("org.testcontainers:postgresql")
testImplementation("org.testcontainers:kafka")
testImplementation("com.redis:testcontainers-redis:2.2.2")
testImplementation("com.redis:testcontainers-redis:2.2.4")
testRuntimeOnly("org.postgresql:postgresql")
}

Expand Down
6 changes: 3 additions & 3 deletions notification-adapter-out/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ dependencies {
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")

// Resilience (vendor 호출 retry / circuit breaker)
implementation("io.github.resilience4j:resilience4j-spring-boot3:2.2.0")
implementation("io.github.resilience4j:resilience4j-spring-boot3:2.4.0")
implementation("org.springframework.boot:spring-boot-starter-aop")

// Mustache (template engine)
implementation("com.github.spullara.mustache.java:compiler:0.9.13")
implementation("com.github.spullara.mustache.java:compiler:0.9.14")

// Tracing / Metrics
implementation("io.micrometer:micrometer-tracing")
Expand All @@ -51,7 +51,7 @@ dependencies {
testImplementation("org.testcontainers:junit-jupiter")
testImplementation("org.testcontainers:postgresql")
testImplementation("org.testcontainers:kafka")
testImplementation("com.redis:testcontainers-redis:2.2.2")
testImplementation("com.redis:testcontainers-redis:2.2.4")
// Mockito Kotlin helpers — any() / whenever / verify 의 Kotlin friendly DSL.
testImplementation("org.mockito.kotlin:mockito-kotlin:5.4.0")
}
Expand Down
Loading