-
What is the difference and which one should we use? Currently, the latest versions in maven repo are:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
io.quarkus:quarkus-bom
is the BOM generated by the core release. Except when developing extensions or in very specific cases, you shouldn't use it.io.quarkus.platform:quarkus-bom
is the BOM generated by the platform release. It ensures proper alignment with all the Platform members (but only contains the dependencies from the core). This is the BOM you should use for your applications.