You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sj...@apache.org on 2023/02/24 06:56:38 UTC

[maven-integration-testing] branch fix-deprecate-systemProperties created (now 80f0aac60)

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

sjaranowski pushed a change to branch fix-deprecate-systemProperties
in repository https://gitbox.apache.org/repos/asf/maven-integration-testing.git


      at 80f0aac60 Replace deprecated systemProperties by systemPropertyVariables

This branch includes the following new commits:

     new 80f0aac60 Replace deprecated systemProperties by systemPropertyVariables

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[maven-integration-testing] 01/01: Replace deprecated systemProperties by systemPropertyVariables

Posted by sj...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

sjaranowski pushed a commit to branch fix-deprecate-systemProperties
in repository https://gitbox.apache.org/repos/asf/maven-integration-testing.git

commit 80f0aac600d8d32667c76fb4ab226e22468bfb57
Author: Slawomir Jaranowski <s....@gmail.com>
AuthorDate: Fri Feb 24 07:56:00 2023 +0100

    Replace deprecated systemProperties by systemPropertyVariables
---
 core-it-suite/pom.xml | 19 +++++--------------
 1 file changed, 5 insertions(+), 14 deletions(-)

diff --git a/core-it-suite/pom.xml b/core-it-suite/pom.xml
index 5724c27bf..acfea23c2 100644
--- a/core-it-suite/pom.xml
+++ b/core-it-suite/pom.xml
@@ -501,20 +501,11 @@ under the License.
           <forkCount>0</forkCount>
           <reuseForks>true</reuseForks>
           <skip>true</skip>
-          <systemProperties>
-            <property>
-              <name>maven.version</name>
-              <value>${maven.version}</value>
-            </property>
-            <property>
-              <name>maven.home</name>
-              <value>${preparedMavenHome}</value>
-            </property>
-            <property>
-              <name>maven.it.global-settings.dir</name>
-              <value>${project.build.testOutputDirectory}</value>
-            </property>
-          </systemProperties>
+          <systemPropertyVariables>
+            <maven.version>${maven.version}</maven.version>
+            <maven.home>${preparedMavenHome}</maven.home>
+            <maven.it.global-settings.dir>${project.build.testOutputDirectory}</maven.it.global-settings.dir>
+          </systemPropertyVariables>
         </configuration>
       </plugin>
       <plugin>