Skip to content

Commit d786ff3

Browse files
committed
MLE-24529 - Force newer jetty and netty libraries to avoid CVEs
org.eclipse.jetty:jetty-http:12.1.1 io.netty:netty-all:4.2.6.Final
1 parent d4b7ab6 commit d786ff3

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

build.gradle

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,16 @@ configurations {
5454
// Force v3.19 of commons-lang3 to avoid CVE-2025-48924 (https://www.cve.org/CVERecord?id=CVE-2025-48924), which
5555
// is caused by the use of avro-compiler v1.12.0 with older dependencies including commons-lang3 v3.12.0.
5656
force 'org.apache.commons:commons-lang3:3.19.0'
57+
58+
// Force v12.1.1 of jetty-http to avoid CVE-2025-5115
59+
// (https://nvd.nist.gov/vuln/detail/CVE-2025-5115), which is a transitive
60+
// dependency of Kafka connect-runtime:4.1.0
61+
force "org.eclipse.jetty:jetty-http:12.1.1"
62+
63+
// Force v4.2.6.Final of netty-all to avoid CVE-2025-58057
64+
// (https://www.cve.org/CVERecord?id=CVE-2025-58057), which is a transitive
65+
// dependency of marklogic-data-hub:6.2.1
66+
force "io.netty:netty-all:4.2.6.Final"
5767
}
5868
}
5969
}

0 commit comments

Comments
 (0)