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