Skip to content

Commit

Permalink
chore(dependencies): unpin com.jayway.jsonpath:json-path
Browse files Browse the repository at this point in the history
because the version from kork-bom/spring boot takes precedence.

From $ ./gradlew orca-core:dependencies, $./gradlew orca-webhook:dependencies and $
./gradlew orca-pipelinetemplate:dependencies before:

+--- com.jayway.jsonpath:json-path:2.2.0 -> 2.5.0
|    +--- net.minidev:json-smart:2.3 -> 2.4.10
|    |    \--- net.minidev:accessors-smart:2.4.9
|    |         \--- org.ow2.asm:asm:9.3

after:

+--- com.jayway.jsonpath:json-path -> 2.5.0
|    +--- net.minidev:json-smart:2.3 -> 2.4.10
|    |    \--- net.minidev:accessors-smart:2.4.9
|    |         \--- org.ow2.asm:asm:9.3
  • Loading branch information
dbyron-sf committed Mar 8, 2024
1 parent 38e426e commit c9542c5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion orca-core/orca-core.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ dependencies {
implementation("org.apache.httpcomponents:httpclient")
implementation("javax.servlet:javax.servlet-api:4.0.1")
implementation("javax.validation:validation-api")
implementation("com.jayway.jsonpath:json-path:2.2.0")
implementation("com.jayway.jsonpath:json-path")
implementation("org.yaml:snakeyaml")
implementation("org.codehaus.groovy:groovy")
implementation("net.javacrumbs.shedlock:shedlock-spring:4.44.0")
Expand Down
2 changes: 1 addition & 1 deletion orca-pipelinetemplate/orca-pipelinetemplate.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies {
implementation("com.hubspot.jinjava:jinjava")
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin")
implementation("com.jayway.jsonpath:json-path:2.2.0")
implementation("com.jayway.jsonpath:json-path")
implementation("org.slf4j:slf4j-api")
implementation("org.springframework.boot:spring-boot-autoconfigure")
implementation("org.springframework:spring-context")
Expand Down
2 changes: 1 addition & 1 deletion orca-webhook/orca-webhook.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ dependencies {
implementation("org.springframework.boot:spring-boot-autoconfigure")
compileOnly("org.projectlombok:lombok")
annotationProcessor("org.projectlombok:lombok")
implementation("com.jayway.jsonpath:json-path:2.2.0")
implementation("com.jayway.jsonpath:json-path")
implementation("com.squareup.okhttp3:okhttp")
implementation("com.jakewharton.retrofit:retrofit1-okhttp3-client:1.1.0")
testImplementation("org.springframework:spring-test")
Expand Down

0 comments on commit c9542c5

Please sign in to comment.