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 2021/11/10 23:32:15 UTC

[camel-quarkus] branch main updated: Fixup 218bef4 Special fix for JMS extensions depending on quarkus-qpid-jms - Cannot run tests against alternative BOMs #3258

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


The following commit(s) were added to refs/heads/main by this push:
     new 000d5e1  Fixup 218bef4 Special fix for JMS extensions depending on quarkus-qpid-jms - Cannot run tests against alternative BOMs #3258
000d5e1 is described below

commit 000d5e1add0af0f7683c5ba8258e3b90bb3b2ad7
Author: Peter Palaga <pp...@redhat.com>
AuthorDate: Wed Nov 10 15:32:09 2021 +0100

    Fixup 218bef4 Special fix for JMS extensions depending on
    quarkus-qpid-jms - Cannot run tests against alternative BOMs #3258
---
 integration-tests/jms-qpid-amqp-client/pom.xml   | 19 +++++++++++++++++++
 integration-tests/sjms-qpid-amqp-client/pom.xml  | 19 +++++++++++++++++++
 integration-tests/sjms2-qpid-amqp-client/pom.xml | 19 +++++++++++++++++++
 3 files changed, 57 insertions(+)

diff --git a/integration-tests/jms-qpid-amqp-client/pom.xml b/integration-tests/jms-qpid-amqp-client/pom.xml
index 94bbfc3..a6b8192 100644
--- a/integration-tests/jms-qpid-amqp-client/pom.xml
+++ b/integration-tests/jms-qpid-amqp-client/pom.xml
@@ -134,6 +134,25 @@
                 </dependency>
             </dependencies>
         </profile>
+        <profile>
+            <id>quarkus-platform</id>
+            <activation>
+                <property>
+                    <name>quarkus.platform.version</name>
+                </property>
+            </activation>
+            <dependencyManagement>
+                <dependencies>
+                    <dependency>
+                        <groupId>com.redhat.quarkus</groupId>
+                        <artifactId>quarkus-universe-bom</artifactId>
+                        <version>${quarkus.platform.version}</version>
+                        <type>pom</type>
+                        <scope>import</scope>
+                    </dependency>
+                </dependencies>
+            </dependencyManagement>
+        </profile>
     </profiles>
 
 </project>
diff --git a/integration-tests/sjms-qpid-amqp-client/pom.xml b/integration-tests/sjms-qpid-amqp-client/pom.xml
index a64f2a1..1e683af 100644
--- a/integration-tests/sjms-qpid-amqp-client/pom.xml
+++ b/integration-tests/sjms-qpid-amqp-client/pom.xml
@@ -134,6 +134,25 @@
                 </dependency>
             </dependencies>
         </profile>
+        <profile>
+            <id>quarkus-platform</id>
+            <activation>
+                <property>
+                    <name>quarkus.platform.version</name>
+                </property>
+            </activation>
+            <dependencyManagement>
+                <dependencies>
+                    <dependency>
+                        <groupId>com.redhat.quarkus</groupId>
+                        <artifactId>quarkus-universe-bom</artifactId>
+                        <version>${quarkus.platform.version}</version>
+                        <type>pom</type>
+                        <scope>import</scope>
+                    </dependency>
+                </dependencies>
+            </dependencyManagement>
+        </profile>
     </profiles>
 
 </project>
diff --git a/integration-tests/sjms2-qpid-amqp-client/pom.xml b/integration-tests/sjms2-qpid-amqp-client/pom.xml
index 97ee5e5..a181e8f 100644
--- a/integration-tests/sjms2-qpid-amqp-client/pom.xml
+++ b/integration-tests/sjms2-qpid-amqp-client/pom.xml
@@ -134,6 +134,25 @@
                 </dependency>
             </dependencies>
         </profile>
+        <profile>
+            <id>quarkus-platform</id>
+            <activation>
+                <property>
+                    <name>quarkus.platform.version</name>
+                </property>
+            </activation>
+            <dependencyManagement>
+                <dependencies>
+                    <dependency>
+                        <groupId>com.redhat.quarkus</groupId>
+                        <artifactId>quarkus-universe-bom</artifactId>
+                        <version>${quarkus.platform.version}</version>
+                        <type>pom</type>
+                        <scope>import</scope>
+                    </dependency>
+                </dependencies>
+            </dependencyManagement>
+        </profile>
     </profiles>
 
 </project>