diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2014-09-03 10:32:18 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2014-09-03 10:32:18 +0200 |
commit | c20b2f5137c50e02a81099cf06f8505d7819de84 (patch) | |
tree | ec4022f2f97c87e623ee21dc79042b67d0600f98 /server | |
parent | 5b11d674c478568b9445d5d65624b473cff8b84f (diff) | |
download | sonarqube-c20b2f5137c50e02a81099cf06f8505d7819de84.tar.gz sonarqube-c20b2f5137c50e02a81099cf06f8505d7819de84.zip |
Improve performance of jacoco on sonar-server
Diffstat (limited to 'server')
-rw-r--r-- | server/sonar-server/pom.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/server/sonar-server/pom.xml b/server/sonar-server/pom.xml index 6efe65ce18e..288db37711c 100644 --- a/server/sonar-server/pom.xml +++ b/server/sonar-server/pom.xml @@ -268,6 +268,18 @@ </archive> </configuration> </plugin> + <plugin> + <groupId>org.jacoco</groupId> + <artifactId>jacoco-maven-plugin</artifactId> + <configuration> + <excludes> + <exclude>*_javassist_*</exclude> + </excludes> + <includes> + <include>org.sonar.server.*</include> + </includes> + </configuration> + </plugin> </plugins> </build> |