Author: gnodet
Date: Wed Jan 10 13:37:30 2007
New Revision: 494998
URL: http://svn.apache.org/viewvc?view=rev&rev=494998
Log:
Exclude junit test which sometime fails
Modified:
incubator/servicemix/trunk/deployables/bindingcomponents/servicemix-file/pom.xml
Modified:
incubator/servicemix/trunk/deployables/bindingcomponents/servicemix-file/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/servicemix/trunk/deployables/bindingcomponents/servicemix-file/pom.xml?view=diff&rev=494998&r1=494997&r2=494998
==============================================================================
---
incubator/servicemix/trunk/deployables/bindingcomponents/servicemix-file/pom.xml
(original)
+++
incubator/servicemix/trunk/deployables/bindingcomponents/servicemix-file/pom.xml
Wed Jan 10 13:37:30 2007
@@ -80,6 +80,18 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <includes>
+ <include>**/*Test*</include>
+ </includes>
+ <excludes>
+ <exclude>**/PollDirectoryTest*</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
</plugins>
</build>