You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by cl...@apache.org on 2023/07/12 12:45:30 UTC

[camel-k-runtime] branch main updated: Define a maven group for the quarkus maven plugin (#1067)

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

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


The following commit(s) were added to refs/heads/main by this push:
     new 55f10885 Define a maven group for the quarkus maven plugin (#1067)
55f10885 is described below

commit 55f108853196a1a5aa3131270cd28d79c0a47dbf
Author: Claudio Miranda <cl...@claudius.com.br>
AuthorDate: Wed Jul 12 09:45:26 2023 -0300

    Define a maven group for the quarkus maven plugin (#1067)
---
 .gitignore                          | 1 +
 examples/cron/pom.xml               | 2 +-
 examples/groovy/pom.xml             | 2 +-
 examples/java/pom.xml               | 2 +-
 examples/js/pom.xml                 | 2 +-
 examples/kafka-source-s3/pom.xml    | 2 +-
 examples/kamelets-discovery/pom.xml | 2 +-
 examples/kamelets/pom.xml           | 2 +-
 examples/knative/pom.xml            | 2 +-
 examples/kotlin/pom.xml             | 2 +-
 examples/xml/pom.xml                | 2 +-
 examples/yaml/pom.xml               | 4 ++--
 itests/pom.xml                      | 4 ++--
 pom.xml                             | 7 ++++---
 support/camel-k-runtime-bom/pom.xml | 5 +++--
 15 files changed, 22 insertions(+), 19 deletions(-)

diff --git a/.gitignore b/.gitignore
index fe1a519a..3ae3dd4d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,3 +10,4 @@ target
 .classpath
 
 .DS_Store
+.vscode
diff --git a/examples/cron/pom.xml b/examples/cron/pom.xml
index 60db4564..365dcc9a 100644
--- a/examples/cron/pom.xml
+++ b/examples/cron/pom.xml
@@ -64,7 +64,7 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>io.quarkus</groupId>
+                <groupId>${quarkus-platform-group}</groupId>
                 <artifactId>quarkus-maven-plugin</artifactId>
                 <version>${quarkus-version}</version>
                 <executions>
diff --git a/examples/groovy/pom.xml b/examples/groovy/pom.xml
index f5ccb0a5..2b849668 100644
--- a/examples/groovy/pom.xml
+++ b/examples/groovy/pom.xml
@@ -56,7 +56,7 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>io.quarkus</groupId>
+                <groupId>${quarkus-platform-group}</groupId>
                 <artifactId>quarkus-maven-plugin</artifactId>
                 <version>${quarkus-version}</version>
                 <executions>
diff --git a/examples/java/pom.xml b/examples/java/pom.xml
index 797ec56b..4cd5161a 100644
--- a/examples/java/pom.xml
+++ b/examples/java/pom.xml
@@ -56,7 +56,7 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>io.quarkus</groupId>
+                <groupId>${quarkus-platform-group}</groupId>
                 <artifactId>quarkus-maven-plugin</artifactId>
                 <version>${quarkus-version}</version>
                 <executions>
diff --git a/examples/js/pom.xml b/examples/js/pom.xml
index 0fcc8ab2..ba4dfd0a 100644
--- a/examples/js/pom.xml
+++ b/examples/js/pom.xml
@@ -56,7 +56,7 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>io.quarkus</groupId>
+                <groupId>${quarkus-platform-group}</groupId>
                 <artifactId>quarkus-maven-plugin</artifactId>
                 <version>${quarkus-version}</version>
                 <executions>
diff --git a/examples/kafka-source-s3/pom.xml b/examples/kafka-source-s3/pom.xml
index 836760dd..82961198 100644
--- a/examples/kafka-source-s3/pom.xml
+++ b/examples/kafka-source-s3/pom.xml
@@ -56,7 +56,7 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>io.quarkus</groupId>
+                <groupId>${quarkus-platform-group}</groupId>
                 <artifactId>quarkus-maven-plugin</artifactId>
                 <version>${quarkus-version}</version>
                 <executions>
diff --git a/examples/kamelets-discovery/pom.xml b/examples/kamelets-discovery/pom.xml
index e60d9635..ae640e28 100644
--- a/examples/kamelets-discovery/pom.xml
+++ b/examples/kamelets-discovery/pom.xml
@@ -59,7 +59,7 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>io.quarkus</groupId>
+                <groupId>${quarkus-platform-group}</groupId>
                 <artifactId>quarkus-maven-plugin</artifactId>
                 <version>${quarkus-version}</version>
                 <executions>
diff --git a/examples/kamelets/pom.xml b/examples/kamelets/pom.xml
index f7b3e4d5..eb257e07 100644
--- a/examples/kamelets/pom.xml
+++ b/examples/kamelets/pom.xml
@@ -59,7 +59,7 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>io.quarkus</groupId>
+                <groupId>${quarkus-platform-group}</groupId>
                 <artifactId>quarkus-maven-plugin</artifactId>
                 <version>${quarkus-version}</version>
                 <executions>
diff --git a/examples/knative/pom.xml b/examples/knative/pom.xml
index 13431cbb..857228f9 100644
--- a/examples/knative/pom.xml
+++ b/examples/knative/pom.xml
@@ -63,7 +63,7 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>io.quarkus</groupId>
+                <groupId>${quarkus-platform-group}</groupId>
                 <artifactId>quarkus-maven-plugin</artifactId>
                 <version>${quarkus-version}</version>
                 <executions>
diff --git a/examples/kotlin/pom.xml b/examples/kotlin/pom.xml
index d6ba806c..1b1fc140 100644
--- a/examples/kotlin/pom.xml
+++ b/examples/kotlin/pom.xml
@@ -55,7 +55,7 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>io.quarkus</groupId>
+                <groupId>${quarkus-platform-group}</groupId>
                 <artifactId>quarkus-maven-plugin</artifactId>
                 <version>${quarkus-version}</version>
                 <executions>
diff --git a/examples/xml/pom.xml b/examples/xml/pom.xml
index da8698cf..04c69c9d 100644
--- a/examples/xml/pom.xml
+++ b/examples/xml/pom.xml
@@ -55,7 +55,7 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>io.quarkus</groupId>
+                <groupId>${quarkus-platform-group}</groupId>
                 <artifactId>quarkus-maven-plugin</artifactId>
                 <version>${quarkus-version}</version>
                 <executions>
diff --git a/examples/yaml/pom.xml b/examples/yaml/pom.xml
index 4600883d..35f23ddd 100644
--- a/examples/yaml/pom.xml
+++ b/examples/yaml/pom.xml
@@ -59,7 +59,7 @@
     <build>
         <plugins>
             <plugin>
-                <groupId>io.quarkus</groupId>
+                <groupId>${quarkus-platform-group}</groupId>
                 <artifactId>quarkus-maven-plugin</artifactId>
                 <version>${quarkus-version}</version>
                 <executions>
@@ -154,7 +154,7 @@
                 <defaultGoal>quarkus:dev</defaultGoal>
                 <plugins>
                     <plugin>
-                        <groupId>io.quarkus</groupId>
+                        <groupId>${quarkus-platform-group}</groupId>
                         <artifactId>quarkus-maven-plugin</artifactId>
                         <version>${quarkus-version}</version>
                         <executions>
diff --git a/itests/pom.xml b/itests/pom.xml
index 660b9fa7..9927b597 100644
--- a/itests/pom.xml
+++ b/itests/pom.xml
@@ -78,7 +78,7 @@
                     </executions>
                 </plugin>
                 <plugin>
-                    <groupId>io.quarkus</groupId>
+                    <groupId>${quarkus-platform-group}</groupId>
                     <artifactId>quarkus-maven-plugin</artifactId>
                     <executions>
                         <execution>
@@ -106,7 +106,7 @@
                 <artifactId>build-helper-maven-plugin</artifactId>
             </plugin>
             <plugin>
-                <groupId>io.quarkus</groupId>
+                <groupId>${quarkus-platform-group}</groupId>
                 <artifactId>quarkus-maven-plugin</artifactId>
             </plugin>
             <plugin>
diff --git a/pom.xml b/pom.xml
index da41e5d2..8dd713aa 100644
--- a/pom.xml
+++ b/pom.xml
@@ -46,6 +46,7 @@
         <camel-quarkus-version>2.16.0</camel-quarkus-version>
         <quarkus-version>2.16.0.Final</quarkus-version>
         <quarkus-platform-version>2.16.0.Final</quarkus-platform-version>
+        <quarkus-platform-group>io.quarkus.platform</quarkus-platform-group>
         <quarkus-native-builder-image>quay.io/quarkus/ubi-quarkus-mandrel-builder-image:22.2.0.0-Final-java11</quarkus-native-builder-image>
 
         <!-- camel-k-runtime specific -->
@@ -293,7 +294,7 @@
                     <version>${maven-plugin-plugin-version}</version>
                 </plugin>
                 <plugin>
-                    <groupId>io.quarkus</groupId>
+                    <groupId>${quarkus-platform-group}</groupId>
                     <artifactId>quarkus-maven-plugin</artifactId>
                     <version>${quarkus-version}</version>
                 </plugin>
@@ -403,14 +404,14 @@
                 <scope>import</scope>
             </dependency>
             <dependency>
-                <groupId>io.quarkus.platform</groupId>
+                <groupId>${quarkus-platform-group}</groupId>
                 <artifactId>quarkus-camel-bom</artifactId>
                 <version>${quarkus-platform-version}</version>
                 <type>pom</type>
                 <scope>import</scope>
             </dependency>
             <dependency>
-                <groupId>io.quarkus.platform</groupId>
+                <groupId>${quarkus-platform-group}</groupId>
                 <artifactId>quarkus-bom</artifactId>
                 <version>${quarkus-platform-version}</version>
                 <type>pom</type>
diff --git a/support/camel-k-runtime-bom/pom.xml b/support/camel-k-runtime-bom/pom.xml
index f6ca043c..f739423c 100644
--- a/support/camel-k-runtime-bom/pom.xml
+++ b/support/camel-k-runtime-bom/pom.xml
@@ -38,6 +38,7 @@
         <jolokia-version>1.7.2</jolokia-version>
         <maven-enforcer-plugin-version>3.3.0</maven-enforcer-plugin-version>
         <maven-version>3.6.3</maven-version>
+        <quarkus-platform-group>io.quarkus.platform</quarkus-platform-group>
         <quarkus-platform-version>2.16.0.Final</quarkus-platform-version>
     </properties>
 
@@ -96,14 +97,14 @@
     <dependencyManagement>
         <dependencies>
             <dependency>
-                <groupId>io.quarkus.platform</groupId>
+                <groupId>${quarkus-platform-group}</groupId>
                 <artifactId>quarkus-camel-bom</artifactId>
                 <version>${quarkus-platform-version}</version>
                 <type>pom</type>
                 <scope>import</scope>
             </dependency>
             <dependency>
-                <groupId>io.quarkus.platform</groupId>
+                <groupId>${quarkus-platform-group}</groupId>
                 <artifactId>quarkus-bom</artifactId>
                 <version>${quarkus-platform-version}</version>
                 <type>pom</type>