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 2022/08/04 14:18:46 UTC

[camel] 01/05: (chores) camel-kafka: forces fork reuse in integration tests

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 69229f5b9103144d287d8a2a7fed5e176a0fc671
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Thu Aug 4 13:31:05 2022 +0200

    (chores) camel-kafka: forces fork reuse in integration tests
---
 components/camel-kafka/pom.xml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/components/camel-kafka/pom.xml b/components/camel-kafka/pom.xml
index 9fdd78e609b..6f56ef02ec0 100644
--- a/components/camel-kafka/pom.xml
+++ b/components/camel-kafka/pom.xml
@@ -132,6 +132,9 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-failsafe-plugin</artifactId>
+                <configuration>
+                    <reuseForks>true</reuseForks>
+                </configuration>
                 <executions>
                     <execution>
                         <id>kafka-3</id>
@@ -139,6 +142,7 @@
                             <systemPropertyVariables>
                                 <kafka.instance.type>local-kafka3-container</kafka.instance.type>
                             </systemPropertyVariables>
+                            <reuseForks>true</reuseForks>
                             <reportNameSuffix>kafka-3</reportNameSuffix>
                         </configuration>
                         <goals>
@@ -147,6 +151,7 @@
                         </goals>
                     </execution>
                 </executions>
+
             </plugin>
         </plugins>
     </build>