You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by an...@apache.org on 2010/01/26 16:15:16 UTC

svn commit: r903258 - /tuscany/sca-java-2.x/trunk/itest/distribution/calculator-rmi/pom.xml

Author: antelder
Date: Tue Jan 26 15:15:14 2010
New Revision: 903258

URL: http://svn.apache.org/viewvc?rev=903258&view=rev
Log:
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

Modified:
    tuscany/sca-java-2.x/trunk/itest/distribution/calculator-rmi/pom.xml

Modified: tuscany/sca-java-2.x/trunk/itest/distribution/calculator-rmi/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/itest/distribution/calculator-rmi/pom.xml?rev=903258&r1=903257&r2=903258&view=diff
==============================================================================
--- tuscany/sca-java-2.x/trunk/itest/distribution/calculator-rmi/pom.xml (original)
+++ tuscany/sca-java-2.x/trunk/itest/distribution/calculator-rmi/pom.xml Tue Jan 26 15:15:14 2010
@@ -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>