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:19:42 UTC

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

Author: krosenvold
Date: Fri Jan 27 21:19:42 2012
New Revision: 1236891

URL: http://svn.apache.org/viewvc?rev=1236891&view=rev
Log:
o reduced thread count, upped release plugin version

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

Modified: maven/surefire/trunk/pom.xml
URL: http://svn.apache.org/viewvc/maven/surefire/trunk/pom.xml?rev=1236891&r1=1236890&r2=1236891&view=diff
==============================================================================
--- maven/surefire/trunk/pom.xml (original)
+++ maven/surefire/trunk/pom.xml Fri Jan 27 21:19:42 2012
@@ -245,9 +245,10 @@
         </plugin>
         <plugin>
           <artifactId>maven-release-plugin</artifactId>
-          <version>2.2.1</version>
+          <version>2.2.2</version>
           <configuration>
             <tagBase>https://svn.apache.org/repos/asf/maven/surefire/tags</tagBase>
+            <autoVersionSubmodules>true</autoVersionSubmodules>
           </configuration>
         </plugin>
         <plugin>

Modified: maven/surefire/trunk/surefire-integration-tests/pom.xml
URL: http://svn.apache.org/viewvc/maven/surefire/trunk/surefire-integration-tests/pom.xml?rev=1236891&r1=1236890&r2=1236891&view=diff
==============================================================================
--- maven/surefire/trunk/surefire-integration-tests/pom.xml (original)
+++ maven/surefire/trunk/surefire-integration-tests/pom.xml Fri Jan 27 21:19:42 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>1</surefire.threadcount>
+    <surefire.threadcount>3</surefire.threadcount>
   </properties>
 
   <dependencies>
@@ -168,6 +168,7 @@
               <configuration>
                 <parallel>classes</parallel>
                 <threadCount>${surefire.threadcount}</threadCount>
+                <perCoreThreadCount>false</perCoreThreadCount>
               </configuration>
             </plugin>
           </plugins>