Skip to content

Commit

Permalink
[Order-service] Fix. CVE-2019-20445
Browse files Browse the repository at this point in the history
  • Loading branch information
shaikrasheed99 committed Dec 10, 2024
1 parent 8b451d5 commit 9fde89d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions order-service/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,14 @@ configurations.matching { it.name == "detekt" }.all {
}
}

configurations.all {
resolutionStrategy.eachDependency {
if (requested.group == "io.projectreactor.netty") {
useVersion("1.2.0")
}
}
}

springBoot {
buildInfo()
}
Expand Down

0 comments on commit 9fde89d

Please sign in to comment.