naushadamin

Results 8 comments of naushadamin

I am trying to configure pactVerify task in build.gradle as following: ` pact { broker { pactBrokerUrl = 'somebrokerurl' // OR to use a bearer token pactBrokerToken = 'sometoken' }...

For a given consumer I have n number of providers. I am trying to setup a CI/CD pipeline to add publish/validate/deploy steps. Do you have any reference/example I can review?...

running 'gradlew build' generates the below error: Execution failed for task ':copyContracts'. > Remote repositories for stubs are not specified and work offline flag wasn't passed Having difficulty debugging locally....

Getting back on this one. Upon further investigations, the below stacktrace results in an empty string being returned as remote repository which generates the IllegalStateException with 'Remote repositories for stubs...

There is no indication on the log that i think there was an attempt. i upgraded 3.0.3 and updated the plugin config in gradle to following: `contractRepository { repositoryUrl =...

> Also what is token? We don't provide such a field to configure the Gradle plugin Do you have any documentation on how to to configure the token value? I...

Any update on this issue? I am unable to determine how to correctly set auth token for pact broker.

I've attempted to set the system property -Dpactbroker.auth.token as following: 1.` /gradlew buiild -Dpactbroker.auth.token="sometoken"` 2. in build.gradle as following: ``` test { systemProperty "pactbroker.auth.token", "sometoken" } ``` I also attempted...