You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ti...@apache.org on 2019/03/27 01:37:09 UTC

[maven-surefire] 01/01: parallel ITs

This is an automated email from the ASF dual-hosted git repository.

tibordigana pushed a commit to branch parallel
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git

commit 77a697e4eddb8fad7123efaa14de589e094b4385
Author: tibordigana <ti...@apache.org>
AuthorDate: Wed Mar 27 02:36:50 2019 +0100

    parallel ITs
---
 maven-failsafe-plugin/pom.xml | 1 +
 surefire-its/pom.xml          | 3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/maven-failsafe-plugin/pom.xml b/maven-failsafe-plugin/pom.xml
index 31dcfbf..d264072 100644
--- a/maven-failsafe-plugin/pom.xml
+++ b/maven-failsafe-plugin/pom.xml
@@ -313,6 +313,7 @@
                                         <integration-test-port>${failsafe-integration-test-port}</integration-test-port>
                                         <integration-test-stop-port>${failsafe-integration-test-stop-port}</integration-test-stop-port>
                                     </properties>
+                                    <parallelThreads>3</parallelThreads>
                                 </configuration>
                             </execution>
                         </executions>
diff --git a/surefire-its/pom.xml b/surefire-its/pom.xml
index b1a1a43..cab7f62 100644
--- a/surefire-its/pom.xml
+++ b/surefire-its/pom.xml
@@ -164,7 +164,8 @@
                 <configuration>
                     <jvm>${jdk.home}/bin/java</jvm>
                     <runOrder>alphabetical</runOrder>
-                    <threadCount>1</threadCount>
+                    <parallel>classes</parallel>
+                    <threadCount>3</threadCount>
                     <perCoreThreadCount>false</perCoreThreadCount>
                     <forkMode>once</forkMode>
                     <argLine>-server -Xmx64m -XX:+UseG1GC -XX:+TieredCompilation -XX:TieredStopAtLevel=1 -Djava.awt.headless=true -Djdk.net.URLClassPath.disableClassPathURLCheck=true</argLine>