You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kr...@apache.org on 2012/01/27 22:36:24 UTC

svn commit: r1236897 - /maven/surefire/trunk/surefire-integration-tests/pom.xml

Author: krosenvold
Date: Fri Jan 27 21:36:23 2012
New Revision: 1236897

URL: http://svn.apache.org/viewvc?rev=1236897&view=rev
Log:
o Disabled parallel by default

Modified:
    maven/surefire/trunk/surefire-integration-tests/pom.xml

Modified: maven/surefire/trunk/surefire-integration-tests/pom.xml
URL: http://svn.apache.org/viewvc/maven/surefire/trunk/surefire-integration-tests/pom.xml?rev=1236897&r1=1236896&r2=1236897&view=diff
==============================================================================
--- maven/surefire/trunk/surefire-integration-tests/pom.xml (original)
+++ maven/surefire/trunk/surefire-integration-tests/pom.xml Fri Jan 27 21:36:23 2012
@@ -36,7 +36,7 @@
     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
     <it.settings.showPasswords>false</it.settings.showPasswords>
     <testng.version>5.7</testng.version>
-    <surefire.threadcount>3</surefire.threadcount>
+    <surefire.threadcount>1</surefire.threadcount>
   </properties>
 
   <dependencies>
@@ -156,9 +156,6 @@
   <profiles>
     <profile>
       <id>parallel</id>
-      <activation>
-        <activeByDefault>true</activeByDefault>
-      </activation>
       <build>
         <pluginManagement>
           <plugins>
@@ -168,7 +165,6 @@
               <configuration>
                 <parallel>classes</parallel>
                 <threadCount>${surefire.threadcount}</threadCount>
-                <perCoreThreadCount>false</perCoreThreadCount>
               </configuration>
             </plugin>
           </plugins>