aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api/pom.xml
diff options
context:
space:
mode:
authorsimonbrandhof <simon.brandhof@gmail.com>2010-09-22 21:02:17 +0000
committersimonbrandhof <simon.brandhof@gmail.com>2010-09-22 21:02:17 +0000
commit89c8dcc3b8db2fb2b044b093113a81aced0dabbd (patch)
tree46e690cd241aecabd4ec55352eb0a07162817ef7 /sonar-plugin-api/pom.xml
parent4da6caa4a5d513296cdc0f2bdd4e85d6c8301b78 (diff)
downloadsonarqube-89c8dcc3b8db2fb2b044b093113a81aced0dabbd.tar.gz
sonarqube-89c8dcc3b8db2fb2b044b093113a81aced0dabbd.zip
sonar-plugin-api: use parallel junit tests
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>