-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
“You need to add io.quarkus:quarkus-rest-client-reactive-jackson to your dependencies.” even though it’s present #499
Comments
No idea @patr1kt0th 🙁 |
Same here with quarkus 3.4.1 on gradle. |
@hbelmiro : I've analyzed this issue. With Quarkus However, the latest version of I guess we just need to recompile the Solution idea: we could determine the Quarkus version at build time and request the correct capability id accordingly. By doing so, the extension would be compatible with Quarkus < Shall I implement a PR? |
Many thanks for investigating @chberger ❤️ |
@chberger I can definitely give it a try on our codebase where we use Quarkus version 3.3.1 on UPDATE: I was able to start both versions locally ( |
Hi guys. I was about to update our project to the latest Quarkus version (3.4.1) and got a strange error when trying to compile our
conversion-connector
(the only one usingquarkus-openapi-generator
version2.2.10
). We use thereactive
versions of the dependencies:and after I try to compile (or run) the application using
./mvnw clean compile
, I get:By using the
-e
switch, the cause is shown:And after checking deployment/src/main/java/io/quarkiverse/openapi/generator/deployment/codegen/OpenApiGeneratorCodeGenBase.java's history and trying the same with the current code base from
main
, thethrow
moved to line 106.Using the
classic
versions of the dependencies:I'm able to compile and run the application without any issues.
@hbelmiro , @ricardozanini , do you have an idea what's going on here? I can check in more details tomorrow, but maybe you know it right away?
The text was updated successfully, but these errors were encountered: