aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2015-06-05 11:59:48 +0200
committerSimon Brandhof <simon.brandhof@sonarsource.com>2015-06-05 11:59:48 +0200
commit49bbc8a0f1dcaa97cd6d20222b5104b9ca2b5942 (patch)
treecd2daca4d1f3d8a8e1bd730cdc201d49c7e485fc /pom.xml
parent0a62861b35fa9af7416a5a77d1510510f3e3599d (diff)
downloadsonarqube-49bbc8a0f1dcaa97cd6d20222b5104b9ca2b5942.tar.gz
sonarqube-49bbc8a0f1dcaa97cd6d20222b5104b9ca2b5942.zip
Enable coverage per tests in profile "analysis"
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml10
1 files changed, 10 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 10241fba94e..8659bc85296 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1459,6 +1459,11 @@
<profile>
<id>coverage-per-test</id>
+ <activation>
+ <property>
+ <name>coveragePerTest</name>
+ </property>
+ </activation>
<dependencies>
<dependency>
<groupId>org.codehaus.sonar-plugins.java</groupId>
@@ -1504,6 +1509,7 @@
<skipServerTests>true</skipServerTests>
</properties>
</profile>
+
<profile>
<id>batch</id>
<properties>
@@ -1511,6 +1517,7 @@
<skipWebTests>true</skipWebTests>
</properties>
</profile>
+
<profile>
<id>server</id>
<properties>
@@ -1518,6 +1525,7 @@
<skipWebTests>true</skipWebTests>
</properties>
</profile>
+
<profile>
<id>web</id>
<properties>
@@ -1527,6 +1535,7 @@
<skipTests>true</skipTests>
</properties>
</profile>
+
<profile>
<!-- SonarSource internal use -->
<id>dbTests</id>
@@ -1598,6 +1607,7 @@
<id>analysis</id>
<properties>
<jsCoverage>coverage</jsCoverage>
+ <coveragePerTest>true</coveragePerTest>
</properties>
</profile>
</profiles>