-
Notifications
You must be signed in to change notification settings - Fork 51
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
Mismatched dependency versions #915
Comments
Hi @AleksanderBrzozowski, I guess this is because QOSDK didn't release Quarkus 3.13.0 in time. This is already fixed in main. So if you can, just update the QOSDK dependency to 6.7.2: <dependency>
<groupId>io.quarkiverse.operatorsdk</groupId>
<artifactId>quarkus-operator-sdk-bom</artifactId>
<version>6.7.2</version>
<type>pom</type>
<scope>import</scope>
</dependency> @metacosm did I miss anything? |
Indeed. Some of this is explained in https://developers.redhat.com/articles/2023/09/19/write-operators-java-josdk-part-4-upgrading-strategies#strategies_for_qosdk_and_quarkus_updates. Note also that the warnings are just informative since it is recommended to use versions that align but usually, things still work even when they don't. Having warnings when versions are not aligned might help diagnose issues. |
Thanks guys for your responses! I have a question, though. This happened for both I would like to avoid having a mismatch in versions between the Operator and Quarkus 🙂 |
Agreed. We're looking into possible solutions to this issue. |
Hi!
I've generated a new project using Quarkus starter, with Kotlin and Operator SDK selected, and Quarkus version
3.13.0
(the newest one). However, when building the project, I see such warning:The same happens when Quarkus version is
3.12.3
:Here is the dependencies list from
build.gradle.kts
file:I am guessing that there is a mismatch between versions declared by the Operator SDK, and the ones that are in the Quarkus BOM. What we should do with it? Removing the Operator SDK dependency fixes the issue.
The text was updated successfully, but these errors were encountered: