Skip to content

Commit 2b6e883

Browse files
committed
CVE-2024-57699: Fix json-smart vulnerability
Signed-off-by: Lantao Jin <[email protected]>
1 parent e4c299a commit 2b6e883

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

core/build.gradle

+4-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,10 @@ dependencies {
5656
api "com.fasterxml.jackson.core:jackson-annotations:${versions.jackson}"
5757
api group: 'com.google.code.gson', name: 'gson', version: '2.8.9'
5858
api group: 'com.tdunning', name: 't-digest', version: '3.3'
59-
api 'org.apache.calcite:calcite-core:1.38.0'
59+
api "net.minidev:json-smart:${versions.json_smart}"
60+
api('org.apache.calcite:calcite-core:1.38.0') {
61+
exclude group: 'net.minidev', module: 'json-smart'
62+
}
6063
api 'org.apache.calcite:calcite-linq4j:1.38.0'
6164
api project(':common')
6265
implementation "com.github.seancfoley:ipaddress:5.4.2"

0 commit comments

Comments
 (0)