Skip to content

Commit

Permalink
[Order-service] Upgrade. Kafka dependency version
Browse files Browse the repository at this point in the history
  • Loading branch information
shaikrasheed99 committed Dec 10, 2024
1 parent 92e4451 commit 512ae8b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions order-service/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ val resilience4jVersion = "2.2.0"
val testcontainersMockserverVersion = "1.19.8"
val mockserverNettyVersion = "5.15.0"
val shedLockVersion = "6.0.1"
val kafkaVersion = "3.3.0"

dependencies {
implementation("org.springframework.boot:spring-boot-starter-web")
Expand All @@ -57,7 +58,7 @@ dependencies {
implementation("org.springframework.cloud:spring-cloud-starter-netflix-eureka-client:$eurekaClientVersion")
implementation("io.github.resilience4j:resilience4j-spring-boot2:$resilience4jVersion")

implementation("org.springframework.kafka:spring-kafka")
implementation("org.springframework.kafka:spring-kafka:$kafkaVersion")
implementation("io.cloudevents:cloudevents-json-jackson:$cloudEventsJsonVersion")

implementation("net.javacrumbs.shedlock:shedlock-spring:$shedLockVersion")
Expand All @@ -80,7 +81,7 @@ dependencies {
testImplementation("org.testcontainers:postgresql")
testImplementation("org.testcontainers:mockserver:$testcontainersMockserverVersion")

testImplementation("org.springframework.kafka:spring-kafka-test")
testImplementation("org.springframework.kafka:spring-kafka-test:$kafkaVersion")
}

dependencyCheck {
Expand Down

0 comments on commit 512ae8b

Please sign in to comment.