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

[camel-k-runtime] branch release-2.16.x updated (cb0026ae -> f8d22aeb)

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

pcongiusti pushed a change to branch release-2.16.x
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git


    from cb0026ae fix(docs): point to Camel K 2.0
     new c3a351c0 Remove unecessary quarkus-extension-maven-plugin from examples (#1066)
     new f8d22aeb Define a maven group for the quarkus maven plugin (#1067)

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                          | 1 +
 examples/cron/pom.xml               | 7 +------
 examples/groovy/pom.xml             | 7 +------
 examples/java/pom.xml               | 7 +------
 examples/js/pom.xml                 | 7 +------
 examples/kafka-source-s3/pom.xml    | 7 +------
 examples/kamelets-discovery/pom.xml | 7 +------
 examples/kamelets/pom.xml           | 7 +------
 examples/knative/pom.xml            | 7 +------
 examples/kotlin/pom.xml             | 7 +------
 examples/xml/pom.xml                | 7 +------
 examples/yaml/pom.xml               | 9 ++-------
 itests/pom.xml                      | 4 ++--
 pom.xml                             | 7 ++++---
 support/camel-k-runtime-bom/pom.xml | 5 +++--
 15 files changed, 22 insertions(+), 74 deletions(-)


[camel-k-runtime] 02/02: Define a maven group for the quarkus maven plugin (#1067)

Posted by pc...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

pcongiusti pushed a commit to branch release-2.16.x
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git

commit f8d22aeb1afb6e162f73aa2582cf0a7d4525474c
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 aae7a936..debad227 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 aace2360..965eae26 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>


[camel-k-runtime] 01/02: Remove unecessary quarkus-extension-maven-plugin from examples (#1066)

Posted by pc...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

pcongiusti pushed a commit to branch release-2.16.x
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git

commit c3a351c0b5377bca7ae9584877e11bb6a05442dd
Author: Claudio Miranda <cl...@claudius.com.br>
AuthorDate: Mon Jul 10 11:53:04 2023 -0300

    Remove unecessary quarkus-extension-maven-plugin from examples (#1066)
---
 examples/cron/pom.xml               | 5 -----
 examples/groovy/pom.xml             | 5 -----
 examples/java/pom.xml               | 5 -----
 examples/js/pom.xml                 | 5 -----
 examples/kafka-source-s3/pom.xml    | 5 -----
 examples/kamelets-discovery/pom.xml | 5 -----
 examples/kamelets/pom.xml           | 5 -----
 examples/knative/pom.xml            | 5 -----
 examples/kotlin/pom.xml             | 5 -----
 examples/xml/pom.xml                | 5 -----
 examples/yaml/pom.xml               | 5 -----
 11 files changed, 55 deletions(-)

diff --git a/examples/cron/pom.xml b/examples/cron/pom.xml
index 27462ffb..60db4564 100644
--- a/examples/cron/pom.xml
+++ b/examples/cron/pom.xml
@@ -63,11 +63,6 @@
 
     <build>
         <plugins>
-            <plugin>
-                <groupId>io.quarkus</groupId>
-                <artifactId>quarkus-extension-maven-plugin</artifactId>
-                <version>${quarkus-version}</version>
-            </plugin>
             <plugin>
                 <groupId>io.quarkus</groupId>
                 <artifactId>quarkus-maven-plugin</artifactId>
diff --git a/examples/groovy/pom.xml b/examples/groovy/pom.xml
index 68041774..f5ccb0a5 100644
--- a/examples/groovy/pom.xml
+++ b/examples/groovy/pom.xml
@@ -55,11 +55,6 @@
 
     <build>
         <plugins>
-            <plugin>
-                <groupId>io.quarkus</groupId>
-                <artifactId>quarkus-extension-maven-plugin</artifactId>
-                <version>${quarkus-version}</version>
-            </plugin>
             <plugin>
                 <groupId>io.quarkus</groupId>
                 <artifactId>quarkus-maven-plugin</artifactId>
diff --git a/examples/java/pom.xml b/examples/java/pom.xml
index 0914f901..797ec56b 100644
--- a/examples/java/pom.xml
+++ b/examples/java/pom.xml
@@ -55,11 +55,6 @@
 
     <build>
         <plugins>
-            <plugin>
-                <groupId>io.quarkus</groupId>
-                <artifactId>quarkus-extension-maven-plugin</artifactId>
-                <version>${quarkus-version}</version>
-            </plugin>
             <plugin>
                 <groupId>io.quarkus</groupId>
                 <artifactId>quarkus-maven-plugin</artifactId>
diff --git a/examples/js/pom.xml b/examples/js/pom.xml
index e3e335f1..0fcc8ab2 100644
--- a/examples/js/pom.xml
+++ b/examples/js/pom.xml
@@ -55,11 +55,6 @@
 
     <build>
         <plugins>
-            <plugin>
-                <groupId>io.quarkus</groupId>
-                <artifactId>quarkus-extension-maven-plugin</artifactId>
-                <version>${quarkus-version}</version>
-            </plugin>
             <plugin>
                 <groupId>io.quarkus</groupId>
                 <artifactId>quarkus-maven-plugin</artifactId>
diff --git a/examples/kafka-source-s3/pom.xml b/examples/kafka-source-s3/pom.xml
index a4dd3cb3..836760dd 100644
--- a/examples/kafka-source-s3/pom.xml
+++ b/examples/kafka-source-s3/pom.xml
@@ -55,11 +55,6 @@
 
     <build>
         <plugins>
-            <plugin>
-                <groupId>io.quarkus</groupId>
-                <artifactId>quarkus-extension-maven-plugin</artifactId>
-                <version>${quarkus-version}</version>
-            </plugin>
             <plugin>
                 <groupId>io.quarkus</groupId>
                 <artifactId>quarkus-maven-plugin</artifactId>
diff --git a/examples/kamelets-discovery/pom.xml b/examples/kamelets-discovery/pom.xml
index afa75317..e60d9635 100644
--- a/examples/kamelets-discovery/pom.xml
+++ b/examples/kamelets-discovery/pom.xml
@@ -58,11 +58,6 @@
 
     <build>
         <plugins>
-            <plugin>
-                <groupId>io.quarkus</groupId>
-                <artifactId>quarkus-extension-maven-plugin</artifactId>
-                <version>${quarkus-version}</version>
-            </plugin>
             <plugin>
                 <groupId>io.quarkus</groupId>
                 <artifactId>quarkus-maven-plugin</artifactId>
diff --git a/examples/kamelets/pom.xml b/examples/kamelets/pom.xml
index 6ac6df1a..f7b3e4d5 100644
--- a/examples/kamelets/pom.xml
+++ b/examples/kamelets/pom.xml
@@ -58,11 +58,6 @@
 
     <build>
         <plugins>
-            <plugin>
-                <groupId>io.quarkus</groupId>
-                <artifactId>quarkus-extension-maven-plugin</artifactId>
-                <version>${quarkus-version}</version>
-            </plugin>
             <plugin>
                 <groupId>io.quarkus</groupId>
                 <artifactId>quarkus-maven-plugin</artifactId>
diff --git a/examples/knative/pom.xml b/examples/knative/pom.xml
index a43d7ac8..13431cbb 100644
--- a/examples/knative/pom.xml
+++ b/examples/knative/pom.xml
@@ -62,11 +62,6 @@
 
     <build>
         <plugins>
-            <plugin>
-                <groupId>io.quarkus</groupId>
-                <artifactId>quarkus-extension-maven-plugin</artifactId>
-                <version>${quarkus-version}</version>
-            </plugin>
             <plugin>
                 <groupId>io.quarkus</groupId>
                 <artifactId>quarkus-maven-plugin</artifactId>
diff --git a/examples/kotlin/pom.xml b/examples/kotlin/pom.xml
index 4d4b8dd2..d6ba806c 100644
--- a/examples/kotlin/pom.xml
+++ b/examples/kotlin/pom.xml
@@ -54,11 +54,6 @@
 
     <build>
         <plugins>
-            <plugin>
-                <groupId>io.quarkus</groupId>
-                <artifactId>quarkus-extension-maven-plugin</artifactId>
-                <version>${quarkus-version}</version>
-            </plugin>
             <plugin>
                 <groupId>io.quarkus</groupId>
                 <artifactId>quarkus-maven-plugin</artifactId>
diff --git a/examples/xml/pom.xml b/examples/xml/pom.xml
index 3012b7f8..da8698cf 100644
--- a/examples/xml/pom.xml
+++ b/examples/xml/pom.xml
@@ -54,11 +54,6 @@
 
     <build>
         <plugins>
-            <plugin>
-                <groupId>io.quarkus</groupId>
-                <artifactId>quarkus-extension-maven-plugin</artifactId>
-                <version>${quarkus-version}</version>
-            </plugin>
             <plugin>
                 <groupId>io.quarkus</groupId>
                 <artifactId>quarkus-maven-plugin</artifactId>
diff --git a/examples/yaml/pom.xml b/examples/yaml/pom.xml
index 46e0426d..4600883d 100644
--- a/examples/yaml/pom.xml
+++ b/examples/yaml/pom.xml
@@ -58,11 +58,6 @@
 
     <build>
         <plugins>
-            <plugin>
-                <groupId>io.quarkus</groupId>
-                <artifactId>quarkus-extension-maven-plugin</artifactId>
-                <version>${quarkus-version}</version>
-            </plugin>
             <plugin>
                 <groupId>io.quarkus</groupId>
                 <artifactId>quarkus-maven-plugin</artifactId>