aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'sonar-plugin-api/pom.xml')
-rw-r--r--sonar-plugin-api/pom.xml10
1 files changed, 10 insertions, 0 deletions
diff --git a/sonar-plugin-api/pom.xml b/sonar-plugin-api/pom.xml
index 712f58e424f..f4a4bdbed97 100644
--- a/sonar-plugin-api/pom.xml
+++ b/sonar-plugin-api/pom.xml
@@ -41,6 +41,16 @@
<skip>false</skip>
</configuration>
</plugin>
+ <!-- Running JUnit tests in parallel -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <parallel>methods</parallel>
+ <threadCount>3</threadCount>
+ <perCoreThreadCount>true</perCoreThreadCount>
+ </configuration>
+ </plugin>
</plugins>
</build>
<dependencies>