aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/sonar-clover-plugin
diff options
context:
space:
mode:
authorsimonbrandhof <simon.brandhof@gmail.com>2010-09-22 21:03:57 +0000
committersimonbrandhof <simon.brandhof@gmail.com>2010-09-22 21:03:57 +0000
commit0a85d34d0ac1912a4639e6d3baa4a2f8668f88a1 (patch)
tree58f93306353b6269a198a31f410eaafbe4defca8 /plugins/sonar-clover-plugin
parent89c8dcc3b8db2fb2b044b093113a81aced0dabbd (diff)
downloadsonarqube-0a85d34d0ac1912a4639e6d3baa4a2f8668f88a1.tar.gz
sonarqube-0a85d34d0ac1912a4639e6d3baa4a2f8668f88a1.zip
remove unused GWT permutations in order to increase build duration + use parallel unit tests on plugins checkstyle, pmd and findbugs
Diffstat (limited to 'plugins/sonar-clover-plugin')
-rw-r--r--plugins/sonar-clover-plugin/pom.xml10
1 files changed, 10 insertions, 0 deletions
diff --git a/plugins/sonar-clover-plugin/pom.xml b/plugins/sonar-clover-plugin/pom.xml
index f49d64cd908..0405112f093 100644
--- a/plugins/sonar-clover-plugin/pom.xml
+++ b/plugins/sonar-clover-plugin/pom.xml
@@ -39,6 +39,16 @@
<skip>true</skip>
</configuration>
</plugin>
+ <!-- Running JUnit tests in parallel -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <parallel>classes</parallel>
+ <threadCount>3</threadCount>
+ <perCoreThreadCount>true</perCoreThreadCount>
+ </configuration>
+ </plugin>
</plugins>
</build>