Author: antelder
Date: Mon Jan 25 17:08:01 2010
New Revision: 902876
URL: http://svn.apache.org/viewvc?rev=902876&view=rev
Log:
Try to fix this on Hudson by disabling parallel tests, though it works ok with
that for me locally so this might not be the issue, perhaps its multicast on
Hudson
Modified:
tuscany/sca-java-2.x/trunk/itest/nodes/one-jvm-hazelcast/pom.xml
Modified: tuscany/sca-java-2.x/trunk/itest/nodes/one-jvm-hazelcast/pom.xml
URL:
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/itest/nodes/one-jvm-hazelcast/pom.xml?rev=902876&r1=902875&r2=902876&view=diff
==============================================================================
--- tuscany/sca-java-2.x/trunk/itest/nodes/one-jvm-hazelcast/pom.xml (original)
+++ tuscany/sca-java-2.x/trunk/itest/nodes/one-jvm-hazelcast/pom.xml Mon Jan 25
17:08:01 2010
@@ -60,4 +60,23 @@
<version>2.0-SNAPSHOT</version>
</dependency>
</dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <version>2.5</version>
+ <configuration>
+ <includes>
+ <include>**/*TestCase.java</include>
+ </includes>
+ <reportFormat>brief</reportFormat>
+ <useFile>false</useFile>
+ <forkMode>once</forkMode>
+ <argLine>-ea -Xmx256m</argLine>
+ <parallel>off</parallel>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
</project>