Upgrading to Quarkus 3.2.10.Final error #39037
Replies: 2 comments
-
You need your REST stacks to be consistent. You are mixing RESTEasy Classic and Reactive, the former for the client, the latter for the server. For the time being, you need either:
(recommended) or if you want to use RESTEasy Classic:
|
Beta Was this translation helpful? Give feedback.
-
@gsmet Thank you, that helps, and I really appreciate your quick reply! Also, am having trouble running the quarkus update command. After I installed the quarkus CLI ( version 3.7.4 ), I try to run the below on a 2.16.11.Final quarkus project: quarkus update --stream=3.2 And I get the below error. Is there anything I need to first change in the project? I've tried cleaning my gradle cache but doesn't seem to help - it may be trying to lock a file? Caused by: org.gradle.internal.UncheckedException: java.util.concurrent.ExecutionException: org.gradle.api.GradleException: Failed to create Jar file /Users/test/.gradle/caches/jars-9/b5aed2af290083c6995652538bedb828/jackson-core-2.16.1.jar. Caused by: java.io.IOException: Failed to process the entry 'META-INF/versions/21/com/fasterxml/jackson/core/io/doubleparser/FastDoubleSwar.class' from '/Users/test/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.16.1/9456bb3cdd0f79f91a5f730a1b1bb041a380c91f/jackson-core-2.16.1.jar' |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm upgrading a Quarkus app from 2.16.6.Final to 3.2.10.Final and am running into the below error related to using resteasy-reactive.
The error occurs when I have "io.quarkus:quarkus-resteasy-reactive-jackson" in my build.gradle so that seems to be the culprit.
The universe bom seems to bring in resteasy dependencies but since I want to use resteasy-reactive, am wondering if this is causing an issue? Thank you!
The quarkus dependencies in my build.gradle are:
The error is :
Beta Was this translation helpful? Give feedback.
All reactions