From 93327a1493c014b011896e567471a351be891b84 Mon Sep 17 00:00:00 2001 From: dotasek Date: Thu, 29 Aug 2024 16:52:11 -0400 Subject: [PATCH 1/2] Update gradle task to version 3 (#167) --- main-branch-pipeline.yml | 2 +- pull-request-pipeline-parameterized.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/main-branch-pipeline.yml b/main-branch-pipeline.yml index 75eff53b..0da0927f 100644 --- a/main-branch-pipeline.yml +++ b/main-branch-pipeline.yml @@ -63,7 +63,7 @@ steps: # the kindling jar to oss sonatype. # 5. Deploy SNAPSHOT build to sonatype - - task: Gradle@2 + - task: Gradle@3 inputs: workingDirectory: '' gradleWrapperFile: 'gradlew' diff --git a/pull-request-pipeline-parameterized.yml b/pull-request-pipeline-parameterized.yml index feca0bdc..bcca60e6 100644 --- a/pull-request-pipeline-parameterized.yml +++ b/pull-request-pipeline-parameterized.yml @@ -13,7 +13,7 @@ jobs: steps: # Runs 'mvn clean install' - - task: Gradle@2 + - task: Gradle@3 inputs: workingDirectory: '' gradleWrapperFile: 'gradlew' From e384980ccb07126850483c8b32c48e1ce66c1947 Mon Sep 17 00:00:00 2001 From: dotasek Date: Thu, 29 Aug 2024 17:38:48 -0400 Subject: [PATCH 2/2] Override jsonpath dependency (#166) --- build.gradle.kts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index 77e5ed93..175560e5 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -199,6 +199,9 @@ dependencies { implementation("org.jgrapht:jgrapht-core:1.5.2") { because("previous versions have a bug impacting this application") } + implementation("com.jayway.jsonpath:json-path:2.9.0") { + because("previous versions have a bug impacting this application") + } } }