Replies: 1 comment 4 replies
-
Hi! This behavior is indeed not intended. Could you open an issue with a reproducer (a simple Maven project I can try to update to see the issue you're mentioning)? Thanks! |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello there,
while the Quarkus update command is very useful when it rewrites stuff related to Quarkus and all its extensions, it seems it is also rewriting dependencies in the
pom.xml
of a Quarkus project which are not directly related to the Quarkus ecosystem. An example would be the Protobuf dependency which we might use in our projects with a different version than Quarkus (probably used by the Quarkus gRPC extension which we do not use). In particular, the update command removes the version from thepom.xml
of our Quarkus projects since it is present in the Quarkus BOM although we would like to manage this version by ourselves.Is there a way to disable this behavior, such that rewriting is done for Quarkus dependencies, but other dependencies like Protobuf are not affected? We would like to use the update command to further automate our update processes, but the removal of versions from the
pom.xml
always requires manual action.Beta Was this translation helpful? Give feedback.
All reactions