Author: davsclaus
Date: Mon Aug  2 06:36:09 2010
New Revision: 981378

URL: http://svn.apache.org/viewvc?rev=981378&view=rev
Log:
Trying to avoid occational test failure by using fork mode per test.

Modified:
    camel/trunk/components/camel-stream/pom.xml

Modified: camel/trunk/components/camel-stream/pom.xml
URL: 
http://svn.apache.org/viewvc/camel/trunk/components/camel-stream/pom.xml?rev=981378&r1=981377&r2=981378&view=diff
==============================================================================
--- camel/trunk/components/camel-stream/pom.xml (original)
+++ camel/trunk/components/camel-stream/pom.xml Mon Aug  2 06:36:09 2010
@@ -79,4 +79,21 @@
 
     </dependencies>
 
+    <build>
+        <plugins>
+            <!-- use per test fork mode to avoid side effects -->
+            <plugin>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <configuration>
+                    <forkMode>pertest</forkMode>
+                                 <excludes>
+                                   <!-- TODO FIXME ASAP -->
+                                       <!-- need to fix this issue when we 
rewrite the stream cache-->
+                                   <exclude>**/*XXXTest.*</exclude>            
+                                 </excludes>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
 </project>


Reply via email to