This is an automated email from the ASF dual-hosted git repository.
claudio4j pushed a commit to branch release-3.2.x
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git
The following commit(s) were added to refs/heads/release-3.2.x by this push:
new e6e8d6aa Fix quarkus-maven-plugin to use the quarkus-platform-version
property (#86) (#1104)
e6e8d6aa is described below
commit e6e8d6aa048f7c36f4aecc89846d1848a251e870
Author: Claudio Miranda <[email protected]>
AuthorDate: Fri Nov 10 08:45:09 2023 -0300
Fix quarkus-maven-plugin to use the quarkus-platform-version property (#86)
(#1104)
It may happen the io.quarkus version differ to quarkus.platform version
so we have to set quarkus-maven-plugin to follow the qurarkus platform
version
---
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 ++--
pom.xml | 2 +-
12 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/examples/cron/pom.xml b/examples/cron/pom.xml
index 75e37555..43f13915 100644
--- a/examples/cron/pom.xml
+++ b/examples/cron/pom.xml
@@ -72,7 +72,7 @@
<plugin>
<groupId>${quarkus-platform-group}</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
- <version>${quarkus-version}</version>
+ <version>${quarkus-platform-version}</version>
<executions>
<execution>
<goals>
diff --git a/examples/groovy/pom.xml b/examples/groovy/pom.xml
index 58d3d2df..3fe831d8 100644
--- a/examples/groovy/pom.xml
+++ b/examples/groovy/pom.xml
@@ -58,7 +58,7 @@
<plugin>
<groupId>${quarkus-platform-group}</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
- <version>${quarkus-version}</version>
+ <version>${quarkus-platform-version}</version>
<executions>
<execution>
<goals>
diff --git a/examples/java/pom.xml b/examples/java/pom.xml
index 6d1e4305..73a908cf 100644
--- a/examples/java/pom.xml
+++ b/examples/java/pom.xml
@@ -58,7 +58,7 @@
<plugin>
<groupId>${quarkus-platform-group}</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
- <version>${quarkus-version}</version>
+ <version>${quarkus-platform-version}</version>
<executions>
<execution>
<goals>
diff --git a/examples/js/pom.xml b/examples/js/pom.xml
index 31c97715..2e80557a 100644
--- a/examples/js/pom.xml
+++ b/examples/js/pom.xml
@@ -58,7 +58,7 @@
<plugin>
<groupId>${quarkus-platform-group}</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
- <version>${quarkus-version}</version>
+ <version>${quarkus-platform-version}</version>
<executions>
<execution>
<goals>
diff --git a/examples/kafka-source-s3/pom.xml b/examples/kafka-source-s3/pom.xml
index e902d916..8cd2dfc1 100644
--- a/examples/kafka-source-s3/pom.xml
+++ b/examples/kafka-source-s3/pom.xml
@@ -58,7 +58,7 @@
<plugin>
<groupId>${quarkus-platform-group}</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
- <version>${quarkus-version}</version>
+ <version>${quarkus-platform-version}</version>
<executions>
<execution>
<goals>
diff --git a/examples/kamelets-discovery/pom.xml
b/examples/kamelets-discovery/pom.xml
index b9437e8b..c29b2f10 100644
--- a/examples/kamelets-discovery/pom.xml
+++ b/examples/kamelets-discovery/pom.xml
@@ -67,7 +67,7 @@
<plugin>
<groupId>${quarkus-platform-group}</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
- <version>${quarkus-version}</version>
+ <version>${quarkus-platform-version}</version>
<executions>
<execution>
<goals>
diff --git a/examples/kamelets/pom.xml b/examples/kamelets/pom.xml
index bc7cd467..f9b86272 100644
--- a/examples/kamelets/pom.xml
+++ b/examples/kamelets/pom.xml
@@ -67,7 +67,7 @@
<plugin>
<groupId>${quarkus-platform-group}</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
- <version>${quarkus-version}</version>
+ <version>${quarkus-platform-version}</version>
<executions>
<execution>
<goals>
diff --git a/examples/knative/pom.xml b/examples/knative/pom.xml
index 68302182..e6cc445d 100644
--- a/examples/knative/pom.xml
+++ b/examples/knative/pom.xml
@@ -71,7 +71,7 @@
<plugin>
<groupId>${quarkus-platform-group}</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
- <version>${quarkus-version}</version>
+ <version>${quarkus-platform-version}</version>
<executions>
<execution>
<goals>
diff --git a/examples/kotlin/pom.xml b/examples/kotlin/pom.xml
index c5b43d12..c6f3d516 100644
--- a/examples/kotlin/pom.xml
+++ b/examples/kotlin/pom.xml
@@ -57,7 +57,7 @@
<plugin>
<groupId>${quarkus-platform-group}</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
- <version>${quarkus-version}</version>
+ <version>${quarkus-platform-version}</version>
<executions>
<execution>
<goals>
diff --git a/examples/xml/pom.xml b/examples/xml/pom.xml
index f6816913..8213fbe1 100644
--- a/examples/xml/pom.xml
+++ b/examples/xml/pom.xml
@@ -57,7 +57,7 @@
<plugin>
<groupId>${quarkus-platform-group}</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
- <version>${quarkus-version}</version>
+ <version>${quarkus-platform-version}</version>
<executions>
<execution>
<goals>
diff --git a/examples/yaml/pom.xml b/examples/yaml/pom.xml
index f359637d..6630868b 100644
--- a/examples/yaml/pom.xml
+++ b/examples/yaml/pom.xml
@@ -67,7 +67,7 @@
<plugin>
<groupId>${quarkus-platform-group}</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
- <version>${quarkus-version}</version>
+ <version>${quarkus-platform-version}</version>
<executions>
<execution>
<goals>
@@ -162,7 +162,7 @@
<plugin>
<groupId>${quarkus-platform-group}</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
- <version>${quarkus-version}</version>
+ <version>${quarkus-platform-version}</version>
<executions>
<execution>
<id>dev</id>
diff --git a/pom.xml b/pom.xml
index c4ca0bab..7d60d196 100644
--- a/pom.xml
+++ b/pom.xml
@@ -296,7 +296,7 @@
<plugin>
<groupId>${quarkus-platform-group}</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
- <version>${quarkus-version}</version>
+ <version>${quarkus-platform-version}</version>
</plugin>
</plugins>
</pluginManagement>