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 vs...@apache.org on 2007/01/10 21:57:28 UTC

svn commit: r494978 - /maven/doxia/trunk/doxia-modules/doxia-module-itext/pom.xml

Author: vsiveton
Date: Wed Jan 10 12:57:27 2007
New Revision: 494978

URL: http://svn.apache.org/viewvc?view=rev&rev=494978
Log:
o maven zones for Continuum seems to doesn't have a graphical subsystem (see [1])
o Added "java.awt.headless=true" as system property for surefire plugin
o Tested on SunOS 5.10

[1] http://maven.zones.apache.org/continuum/surefireReport.action?buildId=190&projectId=129

Modified:
    maven/doxia/trunk/doxia-modules/doxia-module-itext/pom.xml

Modified: maven/doxia/trunk/doxia-modules/doxia-module-itext/pom.xml
URL: http://svn.apache.org/viewvc/maven/doxia/trunk/doxia-modules/doxia-module-itext/pom.xml?view=diff&rev=494978&r1=494977&r2=494978
==============================================================================
--- maven/doxia/trunk/doxia-modules/doxia-module-itext/pom.xml (original)
+++ maven/doxia/trunk/doxia-modules/doxia-module-itext/pom.xml Wed Jan 10 12:57:27 2007
@@ -33,4 +33,22 @@
       <version>1.1.3.4-RC3</version>
     </dependency>    
   </dependencies>
+
+  <build>
+    <plugins>
+      <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>