You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-dev@ws.apache.org by ve...@apache.org on 2008/12/07 00:20:29 UTC

svn commit: r724052 - /webservices/commons/trunk/modules/axiom/modules/axiom-tests/pom.xml

Author: veithen
Date: Sat Dec  6 15:20:28 2008
New Revision: 724052

URL: http://svn.apache.org/viewvc?rev=724052&view=rev
Log:
Some of the Axiom tests use AWT, so set the java.awt.headless system property to true. This prevents Mac OS X from showing an icon in the dock during the test run and should avoid problems on systems that don't have a window manager.

Modified:
    webservices/commons/trunk/modules/axiom/modules/axiom-tests/pom.xml

Modified: webservices/commons/trunk/modules/axiom/modules/axiom-tests/pom.xml
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-tests/pom.xml?rev=724052&r1=724051&r2=724052&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/modules/axiom-tests/pom.xml (original)
+++ webservices/commons/trunk/modules/axiom/modules/axiom-tests/pom.xml Sat Dec  6 15:20:28 2008
@@ -115,6 +115,12 @@
 					<excludes>
 						<exclude>**/*AbstractOMSerializationTest.java</exclude>
 					</excludes>
+                    <systemProperties>
+                        <property>
+                            <name>java.awt.headless</name>
+                            <value>true</value>
+                        </property>
+                    </systemProperties>
 				</configuration>
 			</plugin>
 		</plugins>