diff --git a/docs/src/main/asciidoc/maven-tooling.adoc b/docs/src/main/asciidoc/maven-tooling.adoc index a9244c7529fed..339c80b9445a3 100644 --- a/docs/src/main/asciidoc/maven-tooling.adoc +++ b/docs/src/main/asciidoc/maven-tooling.adoc @@ -240,9 +240,9 @@ and `javac`: [source,xml] ---- - io.quarkus + ${quarkus.platform.group-id} quarkus-maven-plugin - ${quarkus-plugin.version} + ${quarkus.platform.version} ${maven.compiler.source} @@ -425,7 +425,7 @@ If you have not used <>, add the following <1> - io.quarkus.platform + ${quarkus.platform.group-id} quarkus-bom ${quarkus.platform.version} pom @@ -437,7 +437,7 @@ If you have not used <>, add the following <2> - io.quarkus.platform + ${quarkus.platform.group-id} quarkus-maven-plugin ${quarkus.platform.version} true <3> @@ -589,9 +589,9 @@ In order of precedence (greater precedence first): ... - io.quarkus + ${quarkus.platform.group-id} quarkus-maven-plugin - ${quarkus-plugin.version} + ${quarkus.platform.version} true @@ -618,9 +618,9 @@ In order of precedence (greater precedence first): ... - io.quarkus + ${quarkus.platform.group-id} quarkus-maven-plugin - ${quarkus-plugin.version} + ${quarkus.platform.version} true @@ -662,7 +662,7 @@ A typical example is when you want to build your application with different conf In that case, it is possible to add as many executions as needed to the Quarkus Maven plugin configuration. -Below is an example of a Quarkus Maven plugin configuration that will produce two builds of the same application: one using the `prod-oracle` profile and the other one using the `prod-postgresql` profile. +Below is an example of a Quarkus Maven plugin configuration that will produce two builds of the same application: one using the `prod-oracle` profile and the other one using the `prod-postgresql` profile. [source,xml] ---- @@ -673,9 +673,9 @@ Below is an example of a Quarkus Maven plugin configuration that will produce tw ... - io.quarkus + ${quarkus.platform.group-id} quarkus-maven-plugin - ${quarkus-plugin.version} + ${quarkus.platform.version} true @@ -738,9 +738,9 @@ To isolate profile-specific dependencies from other profiles, the JDBC drivers c ... - io.quarkus + ${quarkus.platform.group-id} quarkus-maven-plugin - ${quarkus-plugin.version} + ${quarkus.platform.version} true ...