This is an automated email from the ASF dual-hosted git repository.
ffang 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 91b3ac0 [CAMEL-17546]Introduce camel.failsafe.forkTimeout property
for maven-failsafe-plugin
91b3ac0 is described below
commit 91b3ac0e65d06083db80edb86adff4e0596c6e07
Author: Freeman Fang <[email protected]>
AuthorDate: Mon Jan 24 16:47:05 2022 -0500
[CAMEL-17546]Introduce camel.failsafe.forkTimeout property for
maven-failsafe-plugin
---
components/pom.xml | 2 +-
parent/pom.xml | 1 +
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/components/pom.xml b/components/pom.xml
index e1301d6..197f071 100644
--- a/components/pom.xml
+++ b/components/pom.xml
@@ -384,7 +384,7 @@
</executions>
<configuration>
<reuseForks>true</reuseForks>
-
<forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds>
+
<forkedProcessTimeoutInSeconds>${camel.failsafe.forkTimeout}</forkedProcessTimeoutInSeconds>
<redirectTestOutputToFile>false</redirectTestOutputToFile>
<systemPropertyVariables>
<visibleassertions.silence>true</visibleassertions.silence>
diff --git a/parent/pom.xml b/parent/pom.xml
index b0310df..a0d2cec 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -43,6 +43,7 @@
<camel.surefire.parallel>false</camel.surefire.parallel>
<camel.surefire.parallel.factor>1</camel.surefire.parallel.factor>
<camel.surefire.parallel.strategy>dynamic</camel.surefire.parallel.strategy>
+ <camel.failsafe.forkTimeout>600</camel.failsafe.forkTimeout>
<cxf.xjc.jvmArgs/>
<trimStackTrace>false</trimStackTrace>
<checkstyle.failOnViolation>false</checkstyle.failOnViolation>