Skip to content

Commit

Permalink
➕ Add explicit dependency to json-smart
Browse files Browse the repository at this point in the history
Before version 2.8.0 of json path, json smart was a transitive implementation dependency but now it's only a runtime dependency
  • Loading branch information
Lysoun committed Nov 5, 2023
1 parent 24b07d2 commit 9883d3e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ h2Database = "2.2.224"
postgresql = "42.1.4"

json-path = "2.8.0"
json-smart = "2.4.10"

# use this to specify latest release
versionLatest = "latest.integration"
Expand Down Expand Up @@ -46,6 +47,7 @@ gson = { module = "com.google.code.gson:gson", version.ref = "versionLatest" }
jackson-databind = { module = "com.fasterxml.jackson.core:jackson-databind", version.ref = "versionLatest" }

jsonPath = { module = "com.jayway.jsonpath:json-path", version.ref = "json-path" }
jsonSmart = { module = "net.minidev:json-smart", version.ref = "json-smart" }

h2database = { module = "com.h2database:h2", version.ref = "h2Database" }
mongoDriver-sync = { module = "org.mongodb:mongodb-driver-sync", version.ref = "mongoDriver" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ dependencies {
compileOnly(libs.junit.jupiter.api)

implementation(libs.jsonPath)
implementation(libs.jsonSmart)
}

0 comments on commit 9883d3e

Please sign in to comment.