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/20 12:20:16 UTC

svn commit: r901135 - /tuscany/sca-java-2.x/trunk/pom.xml

Author: antelder
Date: Wed Jan 20 11:20:16 2010
New Revision: 901135

URL: http://svn.apache.org/viewvc?rev=901135&view=rev
Log:
add parallel to the distribution profile to see what happens with using that on Hudson

Modified:
    tuscany/sca-java-2.x/trunk/pom.xml

Modified: tuscany/sca-java-2.x/trunk/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/pom.xml?rev=901135&r1=901134&r2=901135&view=diff
==============================================================================
--- tuscany/sca-java-2.x/trunk/pom.xml (original)
+++ tuscany/sca-java-2.x/trunk/pom.xml Wed Jan 20 11:20:16 2010
@@ -275,6 +275,25 @@
                 <module>distribution</module>
                 <module>archetypes</module>
             </modules>
+           <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>classes</parallel>
+                    </configuration>
+                </plugin>
+              </plugins>
+           </build>
         </profile>
 
 <!-- START - WHAT ARE THE FOLLOWING PROFILES FOR? -->