You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2020/01/23 08:14:18 UTC

[maven-doxia-book-renderer] 08/34: Stop using deprecated syntax for Surefire plugin.

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

hboutemy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-doxia-book-renderer.git

commit b4c951567fdb6ffe6c8a59dd2f60cc214b9c34f6
Author: Dennis Lundberg <de...@apache.org>
AuthorDate: Fri Apr 13 21:07:28 2012 +0000

    Stop using deprecated syntax for Surefire plugin.
    
    git-svn-id: https://svn.apache.org/repos/asf/maven/doxia/doxia-tools/trunk@1325950 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/pom.xml b/pom.xml
index c0fc3f8..8f0ed63 100644
--- a/pom.xml
+++ b/pom.xml
@@ -143,12 +143,9 @@ under the License.
         <artifactId>maven-surefire-plugin</artifactId>
         <configuration>
           <!-- To be sure that JVM will implement AWT in software -->
-          <systemProperties>
-            <property>
-              <name>java.awt.headless</name>
-              <value>true</value>
-            </property>
-          </systemProperties>
+          <systemPropertyVariables>
+            <java.awt.headless>true</java.awt.headless>
+          </systemPropertyVariables>
         </configuration>
       </plugin>
     </plugins>