You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by js...@apache.org on 2008/03/28 07:58:57 UTC

svn commit: r642101 - /activemq/camel/trunk/components/camel-swing/pom.xml

Author: jstrachan
Date: Thu Mar 27 23:58:53 2008
New Revision: 642101

URL: http://svn.apache.org/viewvc?rev=642101&view=rev
Log:
disabled test case that requires a UI to avoid some CI builds failing

Modified:
    activemq/camel/trunk/components/camel-swing/pom.xml

Modified: activemq/camel/trunk/components/camel-swing/pom.xml
URL: http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-swing/pom.xml?rev=642101&r1=642100&r2=642101&view=diff
==============================================================================
--- activemq/camel/trunk/components/camel-swing/pom.xml (original)
+++ activemq/camel/trunk/components/camel-swing/pom.xml Thu Mar 27 23:58:53 2008
@@ -76,13 +76,23 @@
 
   <build>
     <plugins>
-                <!-- allows the example to be ran via 'mvn compile exec:java' -->
+      <!-- allows the example to be ran via 'mvn compile exec:java' -->
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>exec-maven-plugin</artifactId>
         <configuration>
           <mainClass>org.apache.camel.component.uface.swing.Main</mainClass>
           <includePluginDependencies>true</includePluginDependencies>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <excludes>
+            <!-- disable from CI builds due to some boxes not having a UI -->
+            <exclude>**/UFaceTest.*</exclude>
+          </excludes>
         </configuration>
       </plugin>