You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by cs...@apache.org on 2023/01/25 14:22:32 UTC

[maven] branch master updated: Get rid of surefire warning (#966)

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

cstamas pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven.git


The following commit(s) were added to refs/heads/master by this push:
     new 38b447b85 Get rid of surefire warning (#966)
38b447b85 is described below

commit 38b447b85f22087bd17212399724c3e8970072fb
Author: Tamas Cservenak <ta...@cservenak.net>
AuthorDate: Wed Jan 25 15:22:26 2023 +0100

    Get rid of surefire warning (#966)
    
    * Get rid of surefire warning
    
    As we use deprecated configuration.
    
    * Fix it
---
 apache-maven/pom.xml | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/apache-maven/pom.xml b/apache-maven/pom.xml
index 52953f983..178e49fe3 100644
--- a/apache-maven/pom.xml
+++ b/apache-maven/pom.xml
@@ -168,12 +168,9 @@ under the License.
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-plugin</artifactId>
         <configuration>
-          <systemProperties>
-            <property>
-              <name>basedir</name>
-              <value>${basedir}</value>
-            </property>
-          </systemProperties>
+          <systemPropertyVariables>
+            <basedir>${basedir}</basedir>
+          </systemPropertyVariables>
         </configuration>
         <executions>
           <execution>