diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-06-05 11:59:48 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-06-05 11:59:48 +0200 |
commit | 49bbc8a0f1dcaa97cd6d20222b5104b9ca2b5942 (patch) | |
tree | cd2daca4d1f3d8a8e1bd730cdc201d49c7e485fc /pom.xml | |
parent | 0a62861b35fa9af7416a5a77d1510510f3e3599d (diff) | |
download | sonarqube-49bbc8a0f1dcaa97cd6d20222b5104b9ca2b5942.tar.gz sonarqube-49bbc8a0f1dcaa97cd6d20222b5104b9ca2b5942.zip |
Enable coverage per tests in profile "analysis"
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -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> |