From 20618d960649d7d60b7379823a968649e78523f4 Mon Sep 17 00:00:00 2001 From: Ronald Holshausen Date: Wed, 21 Aug 2024 16:37:51 +1000 Subject: [PATCH] chore: Upgrade plugin driver to 0.5.0 --- .../groovy/au.com.dius.pact.kotlin-common-conventions.gradle | 2 +- consumer/build.gradle | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/buildSrc/src/main/groovy/au.com.dius.pact.kotlin-common-conventions.gradle b/buildSrc/src/main/groovy/au.com.dius.pact.kotlin-common-conventions.gradle index 77f06a6a9..e3cc6f5e3 100644 --- a/buildSrc/src/main/groovy/au.com.dius.pact.kotlin-common-conventions.gradle +++ b/buildSrc/src/main/groovy/au.com.dius.pact.kotlin-common-conventions.gradle @@ -31,7 +31,7 @@ dependencies { api 'org.apache.httpcomponents.client5:httpclient5:5.1.3' api 'org.apache.httpcomponents.client5:httpclient5-fluent:5.1.3' api 'org.json:json:20240205' - api 'io.pact.plugin.driver:core:0.4.2' + api 'io.pact.plugin.driver:core:0.5.0' api 'org.apache.tika:tika-core:2.9.1' implementation 'org.jetbrains.kotlin:kotlin-stdlib' diff --git a/consumer/build.gradle b/consumer/build.gradle index 5386083da..cc48fd60c 100644 --- a/consumer/build.gradle +++ b/consumer/build.gradle @@ -21,6 +21,7 @@ dependencies { implementation 'org.slf4j:slf4j-api' implementation 'io.ktor:ktor-server-netty' implementation 'io.ktor:ktor-network-tls-certificates' + implementation 'io.ktor:ktor-server-call-logging' implementation('io.pact.plugin.driver:core') { exclude group: 'au.com.dius.pact.core' } @@ -41,7 +42,7 @@ dependencies { testImplementation 'org.apache.groovy:groovy-dateutil' testRuntimeOnly 'net.bytebuddy:byte-buddy' testRuntimeOnly 'org.objenesis:objenesis:3.2' - testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.13.4.2' - testImplementation 'io.grpc:grpc-protobuf:1.43.2' + testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.14.1' + testImplementation 'io.grpc:grpc-protobuf:1.66.0' testImplementation 'org.junit.jupiter:junit-jupiter-api' }