aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorvasilyeva <vasilyeva@rutarget.ru>2017-07-08 18:52:06 +0300
committerRoman Ivanov <ivanov-jr@mail.ru>2017-07-08 21:29:46 -0700
commit6e6742682b5e8be167294a6e6bb33adccd3a1333 (patch)
tree61ba64a4f1d4e92277dd1b3e97360325a398ca9c /pom.xml
parenta2ed76437a7c340a5dbe5df55a4f6863d7a5af2b (diff)
downloadcheckstyle-6e6742682b5e8be167294a6e6bb33adccd3a1333.tar.gz
Issue #4394: rearranged pitest-checkstyle-api-filters profile
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml44
1 files changed, 40 insertions, 4 deletions
diff --git a/pom.xml b/pom.xml
index 7f0fd8ef3..2276f693b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2123,7 +2123,7 @@
</build>
</profile>
<profile>
- <id>pitest-checkstyle-api-filters</id>
+ <id>pitest-checkstyle-api</id>
<build>
<plugins>
<plugin>
@@ -2133,8 +2133,6 @@
<configuration>
<targetClasses>
<param>com.puppycrawl.tools.checkstyle.api.*</param>
- <param>com.puppycrawl.tools.checkstyle.filefilters.*</param>
- <param>com.puppycrawl.tools.checkstyle.filters.*</param>
</targetClasses>
<targetTests>
<param>com.puppycrawl.tools.checkstyle.api.*</param>
@@ -2146,7 +2144,45 @@
<param>com.puppycrawl.tools.checkstyle.checks.javadoc.WriteTagCheckTest</param>
<param>com.puppycrawl.tools.checkstyle.checks.naming.ParameterNameCheckTest</param>
</targetTests>
- <mutationThreshold>90</mutationThreshold>
+ <mutationThreshold>88</mutationThreshold>
+ <timeoutFactor>${pitest.plugin.timeout.factor}</timeoutFactor>
+ <timeoutConstant>${pitest.plugin.timeout.constant}</timeoutConstant>
+ <threads>${pitest.plugin.threads}</threads>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ <profile>
+ <id>pitest-checkstyle-filters</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.pitest</groupId>
+ <artifactId>pitest-maven</artifactId>
+ <version>${pitest.plugin.version}</version>
+ <configuration>
+ <targetClasses>
+ <param>com.puppycrawl.tools.checkstyle.filefilters.*</param>
+ <param>com.puppycrawl.tools.checkstyle.filters.*</param>
+ </targetClasses>
+ <targetTests>
+ <param>com.puppycrawl.tools.checkstyle.filefilters.*</param>
+ <param>com.puppycrawl.tools.checkstyle.filters.*</param>
+ </targetTests>
+ <excludedMethods>
+ <!-- till https://github.com/checkstyle/checkstyle/issues/4396 -->
+ <param>compareTo</param>
+ <!-- till https://github.com/checkstyle/checkstyle/issues/4396 -->
+ <param>findNearestMatch</param>
+ <!-- till https://github.com/checkstyle/checkstyle/issues/4396 -->
+ <param>tagSuppressions</param>
+ <!-- till https://github.com/checkstyle/checkstyle/issues/4396 -->
+ <param>tagSuppressions</param>
+ <!-- till https://github.com/checkstyle/checkstyle/issues/4396 -->
+ <param>startElement</param>
+ </excludedMethods>
+ <mutationThreshold>100</mutationThreshold>
<timeoutFactor>${pitest.plugin.timeout.factor}</timeoutFactor>
<timeoutConstant>${pitest.plugin.timeout.constant}</timeoutConstant>
<threads>${pitest.plugin.threads}</threads>