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
The following commit(s) were added to refs/heads/main by this push:
new 6bbe3c299ae (chores) camel-rocketmq: fix not skipping tests when it
should
6bbe3c299ae is described below
commit 6bbe3c299ae1da7af6fc3d5219ccd8c7baf11e1d
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Sat May 25 13:59:13 2024 +0200
(chores) camel-rocketmq: fix not skipping tests when it should
---
components/camel-rocketmq/pom.xml | 17 ++++-------------
1 file changed, 4 insertions(+), 13 deletions(-)
diff --git a/components/camel-rocketmq/pom.xml
b/components/camel-rocketmq/pom.xml
index a70af6d6c89..1fbba4ff570 100644
--- a/components/camel-rocketmq/pom.xml
+++ b/components/camel-rocketmq/pom.xml
@@ -34,10 +34,14 @@
<description>Camel RocketMQ Component</description>
<properties>
+ <camel.failsafe.reuseForks>false</camel.failsafe.reuseForks>
<!-- RocketMQ container is only available on x86 -->
<skipTests.ppc64le>true</skipTests.ppc64le>
<skipTests.s390x>true</skipTests.s390x>
<skipTests.aarch64>true</skipTests.aarch64>
+ <skipITs.ppc64le>true</skipITs.ppc64le>
+ <skipITs.s390x>true</skipITs.s390x>
+ <skipITs.aarch64>true</skipITs.aarch64>
</properties>
@@ -77,17 +81,4 @@
<scope>test</scope>
</dependency>
</dependencies>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-failsafe-plugin</artifactId>
- <configuration>
- <skipITs>${skipITs}</skipITs>
- <reuseForks>false</reuseForks>
- </configuration>
- </plugin>
- </plugins>
- </build>
</project>