This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 082898e8ce06 CAMEL-23538: Use testcontainers 2.0.3 on ppc64le via
Maven profile (#23985)
082898e8ce06 is described below
commit 082898e8ce06f2f98a066326e64a15dd942ba59d
Author: Claus Ibsen <[email protected]>
AuthorDate: Fri Jun 12 13:44:17 2026 +0200
CAMEL-23538: Use testcontainers 2.0.3 on ppc64le via Maven profile (#23985)
Signed-off-by: Claus Ibsen <[email protected]>
Co-authored-by: Claude <[email protected]>
---
parent/pom.xml | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/parent/pom.xml b/parent/pom.xml
index b3115905e067..53ce2f899387 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -4137,6 +4137,19 @@
<profiles>
+ <!-- CAMEL-23538: testcontainers 2.0.4+ does not work on ppc64le CI -->
+ <profile>
+ <id>ppc64le-testcontainers</id>
+ <activation>
+ <os>
+ <arch>ppc64le</arch>
+ </os>
+ </activation>
+ <properties>
+ <testcontainers-version>2.0.3</testcontainers-version>
+ </properties>
+ </profile>
+
<profile>
<id>nochecks</id>
<activation>