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:24 UTC

[maven] branch maven-3.9.x updated: Get rid of surefire watning, take 2 (#967)

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

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


The following commit(s) were added to refs/heads/maven-3.9.x by this push:
     new 8fa5545b0 Get rid of surefire watning, take 2 (#967)
8fa5545b0 is described below

commit 8fa5545b0de414bd7493a13ad9f54344e08a65db
Author: Tamas Cservenak <ta...@cservenak.net>
AuthorDate: Wed Jan 25 15:22:16 2023 +0100

    Get rid of surefire watning, take 2 (#967)
    
    The commit 36f02c9de1792478538a171108048c8b86d5a5a1 is wrong,
    as new config property is a Map.
---
 apache-maven/pom.xml | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/apache-maven/pom.xml b/apache-maven/pom.xml
index 855bb7758..08d5f5274 100644
--- a/apache-maven/pom.xml
+++ b/apache-maven/pom.xml
@@ -160,10 +160,7 @@ under the License.
         <artifactId>maven-surefire-plugin</artifactId>
         <configuration>
           <systemPropertyVariables>
-            <property>
-              <name>basedir</name>
-              <value>${basedir}</value>
-            </property>
+            <basedir>${basedir}</basedir>
           </systemPropertyVariables>
         </configuration>
         <executions>