Author: oheger
Date: Thu Aug 30 12:57:51 2007
New Revision: 571286
URL: http://svn.apache.org/viewvc?rev=571286&view=rev
Log:
Setting the java.awt.headless property for the m2 build; this time using the
systemProperties element
Modified:
commons/proper/configuration/trunk/pom.xml
Modified: commons/proper/configuration/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/commons/proper/configuration/trunk/pom.xml?rev=571286&r1=571285&r2=571286&view=diff
==============================================================================
--- commons/proper/configuration/trunk/pom.xml (original)
+++ commons/proper/configuration/trunk/pom.xml Thu Aug 30 12:57:51 2007
@@ -371,7 +371,12 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkMode>once</forkMode>
- <argLine>-Djava.awt.headless=true</argLine>
+ <systemProperties>
+ <property>
+ <name>java.awt.headless</name>
+ <value>true</value>
+ </property>
+ </systemProperties>
</configuration>
</plugin>
</plugins>