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 <[email protected]> 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>
