-
Enhancement
-
Resolution: Done
-
Critical
-
None
-
camel-quarkus-2.2-GA
-
None
Chapter [2.1. Quarkus tooling for starting a new project references a wrong and non-existent BOM dependency
It instructs to use
<properties>
<quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id>
<quarkus.platform.group-id>com.redhat.quarkus.platform</quarkus.platform.group-id>
<quarkus.platform.version>
<!-- The latest 2.2.x version from https://maven.repository.redhat.com/ga/com/redhat/quarkus/platform/quarkus-bom -->
</quarkus.platform.version>
...
</properties>
<dependencyManagement>
<dependencies>
<!-- The BOMs managing the dependency versions -->
<dependency>
<groupId>${quarkus.platform.group-id}</groupId>
<artifactId>quarkus-bom</artifactId>
<version>${quarkus.platform.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>io.quarkus.platform</groupId>
<artifactId>quarkus-camel-bom</artifactId>
<version>${quarkus.platform.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
but the second dependency has a wrong artifactId of io.quarkus.platform.
It should instead also be the artifactId com.redhat.quarkus.platform as referenced in the first dependency.
Please correct this quickly as it affects the Getting started experience.