This is an automated email from the ASF dual-hosted git repository. fmariani pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit f23a2f450d97dee1189af073a2a4a0dc94c4512b Author: Croway <[email protected]> AuthorDate: Thu Feb 5 16:36:32 2026 +0100 Execute ftp tests only once --- components/camel-ftp/pom.xml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/components/camel-ftp/pom.xml b/components/camel-ftp/pom.xml index e5633ffa24e1..a90a3e3fd93d 100644 --- a/components/camel-ftp/pom.xml +++ b/components/camel-ftp/pom.xml @@ -180,11 +180,15 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <executions> + <!-- Disable inherited default execution --> + <execution> + <id>default</id> + <phase>none</phase> + </execution> <execution> <id>integration-test</id> <goals> <goal>integration-test</goal> - <goal>verify</goal> </goals> <configuration> <excludedGroups>not-parallel</excludedGroups>
