Skip to content

Commit

Permalink
build: bump json-smart (#329)
Browse files Browse the repository at this point in the history
  • Loading branch information
vbarua authored Feb 13, 2025
1 parent 2c85210 commit f04fc9b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions isthmus/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,10 @@ val PROTOBUF_VERSION = properties.get("protobuf.version")
dependencies {
implementation(project(":core"))
implementation("org.apache.calcite:calcite-core:${CALCITE_VERSION}")
// calcite-core 1.37.0 brings in net.minidev:json-smart:2.5.0 which has a CVE associated with it.
// See: https://osv.dev/vulnerability/GHSA-pq2g-wx69-c263
// This causes the build to fail. Pull in the fixed version until Calcite is updated
implementation("net.minidev:json-smart:2.5.2")
implementation("org.apache.calcite:calcite-server:${CALCITE_VERSION}")
testImplementation("org.junit.jupiter:junit-jupiter:${JUNIT_VERSION}")
implementation("org.reflections:reflections:0.9.12")
Expand Down

0 comments on commit f04fc9b

Please sign in to comment.