diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2010-01-26 15:15:14 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2010-01-26 15:15:14 +0000 |
commit | c4d765732c7d3b61993192c287d93982ee1e8f35 (patch) | |
tree | 1bc4e324e91aa7b5508339125616a6274669cc19 /sca-java-2.x/trunk/itest/distribution | |
parent | f453539dc808bb86ed832b87716f91a45773128f (diff) |
Don't see why this would effect anything as the tests don't run in parallel but switch it off anyway to see if it changes the hudson build fail
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@903258 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/itest/distribution')
-rw-r--r-- | sca-java-2.x/trunk/itest/distribution/calculator-rmi/pom.xml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sca-java-2.x/trunk/itest/distribution/calculator-rmi/pom.xml b/sca-java-2.x/trunk/itest/distribution/calculator-rmi/pom.xml index 6bb18c463c..bbc4ee3adc 100644 --- a/sca-java-2.x/trunk/itest/distribution/calculator-rmi/pom.xml +++ b/sca-java-2.x/trunk/itest/distribution/calculator-rmi/pom.xml @@ -63,6 +63,21 @@ </execution> </executions> </plugin> + <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> |