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

lburgazzoli pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 9eb1b7a4018664076615530183a8593084286f53
Author: Luca Burgazzoli <lburgazz...@gmail.com>
AuthorDate: Tue Jul 4 16:42:13 2023 +0200

    chore: use systemPropertyVariables instead of systemProperties for maven 
surefire/failsafe plugin config
---
 integration-tests/groovy-dsl/pom.xml               | 8 ++++----
 integration-tests/main-command-mode/pom.xml        | 8 ++++----
 integration-tests/main-unknown-args-fail/pom.xml   | 8 ++++----
 integration-tests/main-unknown-args-ignore/pom.xml | 8 ++++----
 integration-tests/main/pom.xml                     | 4 ++--
 integration-tests/master-file/pom.xml              | 8 ++++----
 integration-tests/master-openshift/pom.xml         | 8 ++++----
 integration-tests/master/pom.xml                   | 8 ++++----
 integration-tests/quartz-clustered/pom.xml         | 8 ++++----
 pom.xml                                            | 4 ++--
 10 files changed, 36 insertions(+), 36 deletions(-)

diff --git a/integration-tests/groovy-dsl/pom.xml 
b/integration-tests/groovy-dsl/pom.xml
index 2e1d62d904..5e9211a412 100644
--- a/integration-tests/groovy-dsl/pom.xml
+++ b/integration-tests/groovy-dsl/pom.xml
@@ -201,9 +201,9 @@
                             </execution>
                         </executions>
                         <configuration>
-                            <systemProperties>
+                            <systemPropertyVariables>
                                 
<quarkus.runner>${quarkus.runner}</quarkus.runner>
-                            </systemProperties>
+                            </systemPropertyVariables>
                         </configuration>
                     </plugin>
                 </plugins>
@@ -231,9 +231,9 @@
                                 </goals>
                                 <phase>integration-test</phase>
                                 <configuration>
-                                    <systemProperties>
+                                    <systemPropertyVariables>
                                         
<quarkus.runner>${quarkus.runner}</quarkus.runner>
-                                    </systemProperties>
+                                    </systemPropertyVariables>
                                 </configuration>
                             </execution>
                         </executions>
diff --git a/integration-tests/main-command-mode/pom.xml 
b/integration-tests/main-command-mode/pom.xml
index 9a8e8a17b0..d4656a143b 100644
--- a/integration-tests/main-command-mode/pom.xml
+++ b/integration-tests/main-command-mode/pom.xml
@@ -90,9 +90,9 @@
                                 </goals>
                                 <phase>integration-test</phase>
                                 <configuration>
-                                    <systemProperties>
+                                    <systemPropertyVariables>
                                         
<quarkus.runner>${quarkus.runner.jar}</quarkus.runner>
-                                    </systemProperties>
+                                    </systemPropertyVariables>
                                 </configuration>
                             </execution>
                         </executions>
@@ -124,9 +124,9 @@
                                     <goal>verify</goal>
                                 </goals>
                                 <configuration>
-                                    <systemProperties>
+                                    <systemPropertyVariables>
                                         
<quarkus.runner>${project.build.directory}/${project.artifactId}-${project.version}-runner</quarkus.runner>
-                                    </systemProperties>
+                                    </systemPropertyVariables>
                                 </configuration>
                             </execution>
                         </executions>
diff --git a/integration-tests/main-unknown-args-fail/pom.xml 
b/integration-tests/main-unknown-args-fail/pom.xml
index 655a0c19c7..aacbd178fd 100644
--- a/integration-tests/main-unknown-args-fail/pom.xml
+++ b/integration-tests/main-unknown-args-fail/pom.xml
@@ -90,9 +90,9 @@
                                 </goals>
                                 <phase>integration-test</phase>
                                 <configuration>
-                                    <systemProperties>
+                                    <systemPropertyVariables>
                                         
<quarkus.runner>${quarkus.runner.jar}</quarkus.runner>
-                                    </systemProperties>
+                                    </systemPropertyVariables>
                                 </configuration>
                             </execution>
                         </executions>
@@ -124,9 +124,9 @@
                                     <goal>verify</goal>
                                 </goals>
                                 <configuration>
-                                    <systemProperties>
+                                    <systemPropertyVariables>
                                         
<quarkus.runner>${project.build.directory}/${project.artifactId}-${project.version}-runner</quarkus.runner>
-                                    </systemProperties>
+                                    </systemPropertyVariables>
                                 </configuration>
                             </execution>
                         </executions>
diff --git a/integration-tests/main-unknown-args-ignore/pom.xml 
b/integration-tests/main-unknown-args-ignore/pom.xml
index 732d878cd9..3dbd22ace9 100644
--- a/integration-tests/main-unknown-args-ignore/pom.xml
+++ b/integration-tests/main-unknown-args-ignore/pom.xml
@@ -90,9 +90,9 @@
                                 </goals>
                                 <phase>integration-test</phase>
                                 <configuration>
-                                    <systemProperties>
+                                    <systemPropertyVariables>
                                         
<quarkus.runner>${quarkus.runner.jar}</quarkus.runner>
-                                    </systemProperties>
+                                    </systemPropertyVariables>
                                 </configuration>
                             </execution>
                         </executions>
@@ -124,9 +124,9 @@
                                     <goal>verify</goal>
                                 </goals>
                                 <configuration>
-                                    <systemProperties>
+                                    <systemPropertyVariables>
                                         
<quarkus.runner>${project.build.directory}/${project.artifactId}-${project.version}-runner</quarkus.runner>
-                                    </systemProperties>
+                                    </systemPropertyVariables>
                                 </configuration>
                             </execution>
                         </executions>
diff --git a/integration-tests/main/pom.xml b/integration-tests/main/pom.xml
index 27c83df684..1ed784d234 100644
--- a/integration-tests/main/pom.xml
+++ b/integration-tests/main/pom.xml
@@ -119,9 +119,9 @@
                                 </goals>
                                 <phase>integration-test</phase>
                                 <configuration>
-                                    <systemProperties>
+                                    <systemPropertyVariables>
                                         
<quarkus.test.profile>staging</quarkus.test.profile>
-                                    </systemProperties>
+                                    </systemPropertyVariables>
                                 </configuration>
                             </execution>
                         </executions>
diff --git a/integration-tests/master-file/pom.xml 
b/integration-tests/master-file/pom.xml
index 8ed9e00849..35a2e08c35 100644
--- a/integration-tests/master-file/pom.xml
+++ b/integration-tests/master-file/pom.xml
@@ -107,9 +107,9 @@
                                 </goals>
                                 <phase>integration-test</phase>
                                 <configuration>
-                                    <systemProperties>
+                                    <systemPropertyVariables>
                                         
<quarkus.runner>${quarkus.runner}</quarkus.runner>
-                                    </systemProperties>
+                                    </systemPropertyVariables>
                                 </configuration>
                             </execution>
                         </executions>
@@ -142,9 +142,9 @@
                             </execution>
                         </executions>
                         <configuration>
-                            <systemProperties>
+                            <systemPropertyVariables>
                                 
<quarkus.runner>${quarkus.runner}</quarkus.runner>
-                            </systemProperties>
+                            </systemPropertyVariables>
                         </configuration>
                     </plugin>
                 </plugins>
diff --git a/integration-tests/master-openshift/pom.xml 
b/integration-tests/master-openshift/pom.xml
index 23cd59a20b..a87b5f371a 100644
--- a/integration-tests/master-openshift/pom.xml
+++ b/integration-tests/master-openshift/pom.xml
@@ -135,9 +135,9 @@
                                 </goals>
                                 <phase>integration-test</phase>
                                 <configuration>
-                                    <systemProperties>
+                                    <systemPropertyVariables>
                                         
<quarkus.runner>${quarkus.runner}</quarkus.runner>
-                                    </systemProperties>
+                                    </systemPropertyVariables>
                                     <environmentVariables>
                                         <!-- Fake KubernetesClusterService so 
it assumes being run from a pod named leader  -->
                                         <HOSTNAME>leader</HOSTNAME>
@@ -174,9 +174,9 @@
                              </execution>
                          </executions>
                          <configuration>
-                             <systemProperties>
+                             <systemPropertyVariables>
                                  
<quarkus.runner>${quarkus.runner}</quarkus.runner>
-                             </systemProperties>
+                             </systemPropertyVariables>
                              <environmentVariables>
                                  Fake KubernetesClusterService so it assumes 
being run from a pod named leader  &gt;
                                  <HOSTNAME>leader</HOSTNAME>
diff --git a/integration-tests/master/pom.xml b/integration-tests/master/pom.xml
index 0a1ad64fe5..ddbe50b425 100644
--- a/integration-tests/master/pom.xml
+++ b/integration-tests/master/pom.xml
@@ -107,9 +107,9 @@
                                 </goals>
                                 <phase>integration-test</phase>
                                 <configuration>
-                                    <systemProperties>
+                                    <systemPropertyVariables>
                                         
<quarkus.runner>${quarkus.runner}</quarkus.runner>
-                                    </systemProperties>
+                                    </systemPropertyVariables>
                                 </configuration>
                             </execution>
                         </executions>
@@ -143,9 +143,9 @@
                             </execution>
                         </executions>
                         <configuration>
-                            <systemProperties>
+                            <systemPropertyVariables>
                                 
<quarkus.runner>${quarkus.runner}</quarkus.runner>
-                            </systemProperties>
+                            </systemPropertyVariables>
                         </configuration>
                     </plugin>
                 </plugins>
diff --git a/integration-tests/quartz-clustered/pom.xml 
b/integration-tests/quartz-clustered/pom.xml
index db010448a2..edb9448366 100644
--- a/integration-tests/quartz-clustered/pom.xml
+++ b/integration-tests/quartz-clustered/pom.xml
@@ -106,9 +106,9 @@
                                 </goals>
                                 <phase>integration-test</phase>
                                 <configuration>
-                                    <systemProperties>
+                                    <systemPropertyVariables>
                                         
<quarkus.runner>${quarkus.runner}</quarkus.runner>
-                                    </systemProperties>
+                                    </systemPropertyVariables>
                                 </configuration>
                             </execution>
                         </executions>
@@ -141,9 +141,9 @@
                             </execution>
                         </executions>
                         <configuration>
-                            <systemProperties>
+                            <systemPropertyVariables>
                                 
<quarkus.runner>${quarkus.runner}</quarkus.runner>
-                            </systemProperties>
+                            </systemPropertyVariables>
                         </configuration>
                     </plugin>
                 </plugins>
diff --git a/pom.xml b/pom.xml
index 0996bedeaf..2598ace814 100644
--- a/pom.xml
+++ b/pom.xml
@@ -800,9 +800,9 @@
                         <groupId>org.apache.maven.plugins</groupId>
                         <artifactId>maven-surefire-plugin</artifactId>
                         <configuration>
-                            <systemProperties>
+                            <systemPropertyVariables>
                                 
<java.security.egd>file:/dev/./urandom</java.security.egd>
-                            </systemProperties>
+                            </systemPropertyVariables>
                         </configuration>
                     </plugin>
                 </plugins>

Reply via email to