You are viewing a plain text version of this content. The canonical link for it is here.
Posted to doxia-commits@maven.apache.org by lt...@apache.org on 2011/04/06 07:41:16 UTC

svn commit: r1089308 - /maven/doxia/doxia-sitetools/trunk/doxia-doc-renderer/pom.xml

Author: ltheussl
Date: Wed Apr  6 05:41:16 2011
New Revision: 1089308

URL: http://svn.apache.org/viewvc?rev=1089308&view=rev
Log:
run tests in headless mode

Modified:
    maven/doxia/doxia-sitetools/trunk/doxia-doc-renderer/pom.xml

Modified: maven/doxia/doxia-sitetools/trunk/doxia-doc-renderer/pom.xml
URL: http://svn.apache.org/viewvc/maven/doxia/doxia-sitetools/trunk/doxia-doc-renderer/pom.xml?rev=1089308&r1=1089307&r2=1089308&view=diff
==============================================================================
--- maven/doxia/doxia-sitetools/trunk/doxia-doc-renderer/pom.xml (original)
+++ maven/doxia/doxia-sitetools/trunk/doxia-doc-renderer/pom.xml Wed Apr  6 05:41:16 2011
@@ -163,6 +163,19 @@ under the License.
           </execution>
         </executions>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <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>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
 </project>