diff options
author | simonbrandhof <simon.brandhof@gmail.com> | 2010-09-22 21:02:17 +0000 |
---|---|---|
committer | simonbrandhof <simon.brandhof@gmail.com> | 2010-09-22 21:02:17 +0000 |
commit | 89c8dcc3b8db2fb2b044b093113a81aced0dabbd (patch) | |
tree | 46e690cd241aecabd4ec55352eb0a07162817ef7 /sonar-plugin-api/pom.xml | |
parent | 4da6caa4a5d513296cdc0f2bdd4e85d6c8301b78 (diff) | |
download | sonarqube-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.xml | 10 |
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> |