This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch fix-validation-surefire
in repository https://gitbox.apache.org/repos/asf/camel.git

commit eb76a57cefd2a7fb9876d449c795ff5434856e1b
Author: Andrea Cosentino <anco...@gmail.com>
AuthorDate: Fri Nov 10 09:52:52 2023 +0100

    Fix Validation for Maven Surefire Plugin in Camel-ftp, Camel-Pulsar and 
Camel-Infinispan
    
    Signed-off-by: Andrea Cosentino <anco...@gmail.com>
---
 components/camel-ftp/pom.xml                                  | 4 ++--
 components/camel-infinispan/camel-infinispan-embedded/pom.xml | 4 ++--
 components/camel-pulsar/pom.xml                               | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/components/camel-ftp/pom.xml b/components/camel-ftp/pom.xml
index b065e613598..ad46e1c8450 100644
--- a/components/camel-ftp/pom.xml
+++ b/components/camel-ftp/pom.xml
@@ -197,13 +197,13 @@
                                     <reuseForks>true</reuseForks>
                                     
<excludedGroups>not-parallel</excludedGroups>
                                     
<forkedProcessTimeoutInSeconds>600</forkedProcessTimeoutInSeconds>
-                                    <systemProperties>
+                                    <systemPropertyVariables>
                                         
<junit.jupiter.execution.parallel.enabled>true</junit.jupiter.execution.parallel.enabled>
                                         
<junit.jupiter.execution.parallel.mode.default>same_thread</junit.jupiter.execution.parallel.mode.default>
                                         
<junit.jupiter.execution.parallel.mode.classes.default>concurrent</junit.jupiter.execution.parallel.mode.classes.default>
                                         
<junit.jupiter.execution.parallel.config.strategy>dynamic</junit.jupiter.execution.parallel.config.strategy>
                                         
<junit.jupiter.execution.parallel.config.dynamic.factor>${camel.failsafe.parallel.factor}</junit.jupiter.execution.parallel.config.dynamic.factor>
-                                    </systemProperties>
+                                    </systemPropertyVariables>
                                 </configuration>
                             </execution>
                             <execution>
diff --git a/components/camel-infinispan/camel-infinispan-embedded/pom.xml 
b/components/camel-infinispan/camel-infinispan-embedded/pom.xml
index 6e36510b4b3..13d7d32e275 100644
--- a/components/camel-infinispan/camel-infinispan-embedded/pom.xml
+++ b/components/camel-infinispan/camel-infinispan-embedded/pom.xml
@@ -137,12 +137,12 @@
                     <plugin>
                         <artifactId>maven-surefire-plugin</artifactId>
                         <configuration>
-                            <systemProperties>
+                            <systemPropertyVariables>
                                 <property>
                                     
<name>infinispan.test.jgroups.protocol</name>
                                     <value>tcp</value>
                                 </property>
-                            </systemProperties>
+                            </systemPropertyVariables>
                         </configuration>
                     </plugin>
                 </plugins>
diff --git a/components/camel-pulsar/pom.xml b/components/camel-pulsar/pom.xml
index 2e08018091b..b8e99088b12 100644
--- a/components/camel-pulsar/pom.xml
+++ b/components/camel-pulsar/pom.xml
@@ -105,9 +105,9 @@
                     <plugin>
                         <artifactId>maven-surefire-plugin</artifactId>
                         <configuration>
-                            <systemProperties>
+                            <systemPropertyVariables>
                                 
<pulsar.container>apachepulsar/pulsar:${pulsar-version}</pulsar.container>
-                            </systemProperties>
+                            </systemPropertyVariables>
                         </configuration>
                     </plugin>
                 </plugins>

Reply via email to