Skip to content

Commit

Permalink
Exclude json-smart transitive dependency from json-path
Browse files Browse the repository at this point in the history
Fixes gh-58
  • Loading branch information
cbo-indeed committed Feb 15, 2021
1 parent 833f5e7 commit 5fc87ec
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion graphql-dgs-client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ plugins {
}

dependencies {
api("com.jayway.jsonpath:json-path:2.4.+")
api("com.jayway.jsonpath:json-path:2.4.+") {
exclude(group = "net.minidev", module = "json-smart")
}
api("io.projectreactor:reactor-core:3.4.+")

implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
Expand Down
5 changes: 4 additions & 1 deletion graphql-dgs/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ dependencies {
api(project(":graphql-dgs-mocking"))

api("com.graphql-java:graphql-java:${Versions.GRAPHQL_JAVA}")
api("com.jayway.jsonpath:json-path:2.+")
api("com.jayway.jsonpath:json-path:2.+") {
exclude(group = "net.minidev", module = "json-smart")
}

implementation("org.springframework:spring-web")
implementation("org.springframework.boot:spring-boot")

Expand Down

0 comments on commit 5fc87ec

Please sign in to comment.