summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-01-20 12:34:49 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-01-20 12:34:49 +0000
commit0a3061188b6f439a130a0bd49ba7e6a49f439fc1 (patch)
tree02ba3870e348b58a15f6684baaf53e6ed9248046
parentf04add1ce98eb1bd8885ce008490fe012673a06f (diff)
Disable parallel test running
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@901166 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--sca-java-2.x/trunk/itest/nodes/two-nodes-test/pom.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/sca-java-2.x/trunk/itest/nodes/two-nodes-test/pom.xml b/sca-java-2.x/trunk/itest/nodes/two-nodes-test/pom.xml
index a01b682803..f0df20c597 100644
--- a/sca-java-2.x/trunk/itest/nodes/two-nodes-test/pom.xml
+++ b/sca-java-2.x/trunk/itest/nodes/two-nodes-test/pom.xml
@@ -55,4 +55,25 @@
<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>