You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pp...@apache.org on 2022/01/27 20:21:21 UTC

[camel-quarkus] 04/04: Use parametrized groupId for quarkus-maven-plugin so that it is possible to run our tests with io.quarkus.platform:quarkus-maven-plugin

This is an automated email from the ASF dual-hosted git repository.

ppalaga pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit b050497cf55391c416e2886f88c677f16d54f472
Author: Peter Palaga <pp...@redhat.com>
AuthorDate: Thu Jan 27 16:33:12 2022 +0100

    Use parametrized groupId for quarkus-maven-plugin so that it is possible
    to run our tests with
    io.quarkus.platform:quarkus-maven-plugin
---
 integration-tests/avro/pom.xml      | 2 +-
 integration-tests/messaging/pom.xml | 2 +-
 integration-tests/protobuf/pom.xml  | 2 +-
 pom.xml                             | 5 -----
 poms/build-parent-it/pom.xml        | 7 ++++++-
 5 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/integration-tests/avro/pom.xml b/integration-tests/avro/pom.xml
index 83d8bc7..41716c8 100644
--- a/integration-tests/avro/pom.xml
+++ b/integration-tests/avro/pom.xml
@@ -60,7 +60,7 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>io.quarkus</groupId>
+                <groupId>${quarkus.platform.group-id}</groupId>
                 <artifactId>quarkus-maven-plugin</artifactId>
                 <extensions>true</extensions><!-- Workaround for https://github.com/quarkusio/quarkus/issues/21718 -->
                 <executions>
diff --git a/integration-tests/messaging/pom.xml b/integration-tests/messaging/pom.xml
index d714afa..e68e5c1 100644
--- a/integration-tests/messaging/pom.xml
+++ b/integration-tests/messaging/pom.xml
@@ -40,7 +40,7 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>io.quarkus</groupId>
+                <groupId>${quarkus.platform.group-id}</groupId>
                 <artifactId>quarkus-maven-plugin</artifactId>
                 <executions>
                     <execution>
diff --git a/integration-tests/protobuf/pom.xml b/integration-tests/protobuf/pom.xml
index 4d3537a..382f1ae 100644
--- a/integration-tests/protobuf/pom.xml
+++ b/integration-tests/protobuf/pom.xml
@@ -60,7 +60,7 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>io.quarkus</groupId>
+                <groupId>${quarkus.platform.group-id}</groupId>
                 <artifactId>quarkus-maven-plugin</artifactId>
                 <extensions>true</extensions><!-- Workaround for https://github.com/quarkusio/quarkus/issues/21718 -->
                 <executions>
diff --git a/pom.xml b/pom.xml
index c0b49cd..8264f3e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -402,11 +402,6 @@
                 </plugin>
 
                 <plugin>
-                    <groupId>io.quarkus</groupId>
-                    <artifactId>quarkus-maven-plugin</artifactId>
-                    <version>${quarkus.version}</version>
-                </plugin>
-                <plugin>
                     <groupId>org.l2x6.cq</groupId>
                     <artifactId>cq-maven-plugin</artifactId>
                     <version>${cq-plugin.version}</version>
diff --git a/poms/build-parent-it/pom.xml b/poms/build-parent-it/pom.xml
index 38e3e46..132aff5 100644
--- a/poms/build-parent-it/pom.xml
+++ b/poms/build-parent-it/pom.xml
@@ -77,6 +77,11 @@
         <pluginManagement>
             <plugins>
                 <plugin>
+                    <groupId>${quarkus.platform.group-id}</groupId>
+                    <artifactId>quarkus-maven-plugin</artifactId>
+                    <version>${quarkus.platform.version}</version>
+                </plugin>
+                <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-failsafe-plugin</artifactId>
                     <executions>
@@ -152,7 +157,7 @@
                     </plugin>
 
                     <plugin>
-                        <groupId>io.quarkus</groupId>
+                        <groupId>${quarkus.platform.group-id}</groupId>
                         <artifactId>quarkus-maven-plugin</artifactId>
                         <executions>
                             <execution>