You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2023/04/26 08:32:02 UTC

[camel] 01/02: Added ppc64le supported image for consul

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

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

commit f12952c61549d2c266ef2432a863f515bec4e0c9
Author: Balavva <Ba...@ibm.com>
AuthorDate: Wed Apr 26 12:39:25 2023 +0530

    Added ppc64le supported image for consul
---
 components/camel-consul/pom.xml | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/components/camel-consul/pom.xml b/components/camel-consul/pom.xml
index 2c5b4730aa9..c3ad69308ca 100644
--- a/components/camel-consul/pom.xml
+++ b/components/camel-consul/pom.xml
@@ -155,4 +155,30 @@
 
     </dependencies>
 
+    <profiles>
+        <profile>
+            <id>ppc64le</id>
+            <activation>
+                <os>
+                    <arch>ppc64le</arch>
+                </os>
+            </activation>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-failsafe-plugin</artifactId>
+                        <configuration>
+                            <skipITs>${skipTests}</skipITs>
+                            <reuseForks>true</reuseForks>
+                            <systemPropertyVariables>
+                                 <consul.container>icr.io/ppc64le-oss/consul-ppc64le:1.9.4</consul.container>
+                           </systemPropertyVariables>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
+
 </project>