pact-jvm icon indicating copy to clipboard operation
pact-jvm copied to clipboard

JVM version of Pact. Enables consumer driven contract testing, providing a mock service and DSL for the consumer project, and interaction playback and verification for the service provider project.

Results 209 pact-jvm issues
Sort by recently updated
recently updated
newest added

Hello, after upgrading Pact gradle plugin to 4.3.13 (from 4.3.12) our gradle build fails almost immediately after starting it. The error I got: Could not apply requested plugin [id: ‘au.com.dius.pact’,...

bug

In the [Documentation](https://docs.pact.io/implementation_guides/jvm/docs/system-properties) I found one of the property like **pactbroker.consumerversionselectors.tags**, but I read that tags are not the recommended approach, so there is some property which will be looking...

question

I am facing issue related to consumer filtering. I have multiple consumer(say C1 and C2) for one provider. Both consumer publish their individual contracts. When feature branch of C1 publishes...

Hi, After modernizing library 'au.com.dius.pact' version `4.3.9` to `4.3.12`, our service is not building anymore. The message ``` > Could not find method hasPactsFromPactBroker() for arguments [our server] on object...

bug

Hi, I'm currently struggling with setting up a provider verification with the gradle plugin. My configuration in `build.gradle.kts` looks like this: ```kotlin pact { serviceProviders { create("my-provider") { verificationType =...

bug

We have a pact test where one of the variables is a negative number (MessagePactBuilder generated file): `{ "consumer": { "name": "ledger" }, "provider": { "name": "connector" }, "messages": [...

bug

In a Java project using pact junit5 4.2.11, and I have encoding issues. When generating a Pact, the response body is read from a json file containing accented characters (é,...

### The issue I am seeing this in my logs: ``` Skipping publishing of verification results as it has been disabled (pact.verifier.publishResults is not 'true' ``` However, I have this...

bug

We have a provider build that pulls contracts from pactflow. We've enabled all pending test options and see the appropriate lines in the logs. We have one case in the...

bug

Hi, as the title says if I want to build a pact on the consumer side and use multipart/form-data and withFileUpload() e.g.: ``` @Pact (...) return builder .given("Post something") .uponReceiving("Set...

enhancement