ipichris
ipichris
The link in the README.md is for version 2.0 of the spec https://github.com/openapi-tools/swagger-maven-plugin#properties-of-swagger-model https://swagger.io/blog/api-development/customizing-your-auto-generated-swagger-definition/ specifically the properties basePath, schemes, host were replaced by "servers" config as described here: https://swagger.io/docs/specification/api-host-and-base-path/ Did...
**Describe the bug** When using attachSwaggerArtifact = true the filename of the maven artifact is always ...swagger.json and ...swagger.yaml instead of the configured outputFilename. **To Reproduce** Maven project with swagger-maven-plugin...
Currently i have to rewrite the mock rule to verify the number of calls. I.e.: ``` mock.onPost().withPath(Matchers.containsString("/something")).doReturn(HttpStatus.SC_OK, "777"); [...] mock.verify().post().withPath(Matchers.containsString("/something")).called(1); ``` Especially when using complex rules this is time consuming...
We migrated to HttpClient 5 and HttpClientMock 2.1.1 and found an issue we already had for HttpClient 4 with HttpClientMock 1.9.0, see issue #39 -> For HttpClientMock 1.10.0 there was...