Marcin Dąbrowski
Marcin Dąbrowski
We are using it with spring boot 2.7, and it is OK. But why you won't update to 2.7? Very soon it will be the last 2.x branch, so in...
It is still very noisy :(.
After looking into code, I've created PR #472 and added prop named `spotlightTarget`.
Any ETA on support for Spring 6?
For me, it started to work after adding `@ImportAutoConfiguration(GrpcClientAutoConfiguration.class)` to my configuration class.
@matiwinnetou are you sure that in your project you are not importing any bom file? For example I had the same error with Spring Boot 3.2 because in their bom...
I'm using Gradle, and for me this helped: ```kotlin configurations.all { resolutionStrategy.eachDependency { if (requested.group == "org.eclipse.jetty") { useVersion("11.0.18") because("Jetty 12.x.x from Spring Boot 3.2.x is incompatible with Wiremock 3.3.x.")...
Please look into https://github.com/wiremock/wiremock/issues/2149. There is description for the possible solutions.
> That should exclude your cases, right? Thanks, it is working. But should I close this Issue? For me, it looks like a workaround, not a final solution,.
Actually it is. You have to add @ImportAutoConfiguration(GrpcClientAutoConfiguration.class) to your configuration. Current version of the starter do not have autoconfiguration file in format supported from 2.7, and old one is...