Nicola
07/26/2024, 8:22 AMimplementation platform("org.http4k:http4k-bom:5.26.0.0")
The first one is CVE-2023-40167, Score: 5.3
it's seems related to Jetty
I import Jetty in this way:
implementation "org.http4k:http4k-server-jetty"
Is it possible to upgrade it?
Thanksdave
07/26/2024, 8:29 AMNicola
07/26/2024, 8:38 AMimplementation "org.http4k:http4k-server-jetty:12.0.11"
it doesn't work
Should I import jetty directly?Nicola
07/26/2024, 8:39 AMCLOVIS
07/26/2024, 8:39 AMdependencies {
constraints {
implementation "org.http4k:http4k-server-jetty:12.0.11"
}
}
Nicola
07/26/2024, 8:41 AMCLOVIS
07/26/2024, 8:41 AMdave
07/26/2024, 9:06 AMNicola
07/26/2024, 9:07 AMdave
07/26/2024, 9:08 AMCLOVIS
07/26/2024, 9:15 AM./gradlew :YOUR_MODULE_NAME:dependencyInsight --dependency org.eclipse.jetty:jetty-server --configuration testRuntimeClasspath
(if you're in a multiplatform project, replace the configuration by jsTestRuntimeClasspath
, jvmTestRuntimeClasspath
or any other platform you have the problem on)Nicola
07/26/2024, 9:16 AMNicola
07/26/2024, 9:26 AMCLOVIS
07/26/2024, 9:28 AM:dependencyInsight
task to be sure? Maybe you do you have a problem and IntelliJ just forgot it after the restart, that happens tooNicola
07/26/2024, 9:28 AMNicola
07/26/2024, 9:29 AMCLOVIS
07/26/2024, 9:29 AM:dependencyInsight …
instead of :project:dependencyInsight …
CLOVIS
07/26/2024, 9:29 AM:
)Nicola
07/26/2024, 9:30 AMCLOVIS
07/26/2024, 9:31 AMNicola
07/26/2024, 9:31 AM