We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Describe the bug Getting below error when using latest dependency of wiremock in the project.
java.lang.NoSuchMethodError: 'void com.github.tomakehurst.wiremock.extension.responsetemplating.ResponseTemplateTransformer.<init>(boolean)'
Sample Currently spring-cloud-contract-wiremock is using older wiremock dependency..
<dependency> <groupId>com.github.tomakehurst</groupId> <artifactId>wiremock-jre8-standalone</artifactId> </dependency>
It should be compatible with
<dependency> <groupId>org.wiremock</groupId> <artifactId>wiremock-standalone</artifactId> </dependency>