Author: chirino
Date: Mon Feb 26 17:29:01 2007
New Revision: 512102
URL: http://svn.apache.org/viewvc?view=rev&rev=512102
Log:
Disable the MulticastSyncChannelTest test as it is not stable on linux
Modified:
activemq/branches/activemq-4.0/activeio/activeio-core/pom.xml
Modified: activemq/branches/activemq-4.0/activeio/activeio-core/pom.xml
URL: http://svn.apache.org/viewvc/activemq/branches/activemq-4.0/activeio/activeio-core/pom.xml?view=diff&rev=512102&r1=512101&r2=512102
==============================================================================
--- activemq/branches/activemq-4.0/activeio/activeio-core/pom.xml (original)
+++ activemq/branches/activemq-4.0/activeio/activeio-core/pom.xml Mon Feb 26 17:29:01 2007
@@ -31,6 +31,19 @@
<build>
<plugins>
+ <!-- Configure which tests are included/excuded -->
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <includes>
+ <include>**/*Test.*</include>
+ </includes>
+ <excludes>
+ <exclude>**/MulticastSyncChannelTest.*</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+
<!-- generate the attached tests jar -->
<plugin>
<artifactId>maven-jar-plugin</artifactId>
|