aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorRoman Ivanov <ivanov-jr@mail.ru>2017-07-09 08:15:05 -0700
committerRoman Ivanov <ivanov-jr@mail.ru>2017-07-09 08:15:05 -0700
commitb41c7a3af8939e8919c962fcc469d7ad5924185f (patch)
tree6fa2e52596d2abc2933c9182781513182fab9b95 /pom.xml
parent5f3665522bb7a0f93c09f09680c48362a2985071 (diff)
downloadcheckstyle-b41c7a3af8939e8919c962fcc469d7ad5924185f.tar.gz
Issue #4675: add profile pitest-checks-misc
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml55
1 files changed, 55 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 2276f693b..69cb88cb7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1564,6 +1564,61 @@
</profile>
<profile>
+ <id>pitest-checks-misc</id>
+ <properties>
+ <skipTests>true</skipTests>
+ </properties>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.pitest</groupId>
+ <artifactId>pitest-maven</artifactId>
+ <version>${pitest.plugin.version}</version>
+ <configuration>
+ <targetClasses>
+ <param>com.puppycrawl.tools.checkstyle.checks.ArrayTypeStyleCheck</param>
+ <param>com.puppycrawl.tools.checkstyle.checks.AvoidEscapedUnicodeCharactersCheck</param>
+ <param>com.puppycrawl.tools.checkstyle.checks.DescendantTokenCheck</param>
+ <param>com.puppycrawl.tools.checkstyle.checks.FileContentsHolder</param>
+ <param>com.puppycrawl.tools.checkstyle.checks.FileSetCheckLifecycle</param>
+ <param>com.puppycrawl.tools.checkstyle.checks.FinalParametersCheck</param>
+ <param>com.puppycrawl.tools.checkstyle.checks.NewlineAtEndOfFileCheck</param>
+ <param>com.puppycrawl.tools.checkstyle.checks.OuterTypeFilenameCheck</param>
+ <param>com.puppycrawl.tools.checkstyle.checks.SuppressWarningsHolder</param>
+ <param>com.puppycrawl.tools.checkstyle.checks.TodoCommentCheck</param>
+ <param>com.puppycrawl.tools.checkstyle.checks.TrailingCommentCheck</param>
+ <param>com.puppycrawl.tools.checkstyle.checks.TranslationCheck</param>
+ <param>com.puppycrawl.tools.checkstyle.checks.UncommentedMainCheck</param>
+ <param>com.puppycrawl.tools.checkstyle.checks.UniquePropertiesCheck</param>
+ <param>com.puppycrawl.tools.checkstyle.checks.UpperEllCheck</param>
+ </targetClasses>
+ <targetTests>
+ <param>com.puppycrawl.tools.checkstyle.checks.ArrayTypeStyleCheckTest</param>
+ <param>com.puppycrawl.tools.checkstyle.checks.AvoidEscapedUnicodeCharactersCheckTest</param>
+ <param>com.puppycrawl.tools.checkstyle.checks.DescendantTokenCheckTest</param>
+ <param>com.puppycrawl.tools.checkstyle.checks.FileContentsHolderTest</param>
+ <param>com.puppycrawl.tools.checkstyle.checks.FileSetCheckLifecycleTest</param>
+ <param>com.puppycrawl.tools.checkstyle.checks.FinalParametersCheckTest</param>
+ <param>com.puppycrawl.tools.checkstyle.checks.NewlineAtEndOfFileCheckTest</param>
+ <param>com.puppycrawl.tools.checkstyle.checks.OuterTypeFilenameCheckTest</param>
+ <param>com.puppycrawl.tools.checkstyle.checks.SuppressWarningsHolderTest</param>
+ <param>com.puppycrawl.tools.checkstyle.checks.TodoCommentCheckTest</param>
+ <param>com.puppycrawl.tools.checkstyle.checks.TrailingCommentCheckTest</param>
+ <param>com.puppycrawl.tools.checkstyle.checks.TranslationCheckTest</param>
+ <param>com.puppycrawl.tools.checkstyle.checks.UncommentedMainCheckTest</param>
+ <param>com.puppycrawl.tools.checkstyle.checks.UniquePropertiesCheckTest</param>
+ <param>com.puppycrawl.tools.checkstyle.checks.UpperEllCheckTest</param>
+ </targetTests>
+ <mutationThreshold>90</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-checks-annotation</id>
<properties>
<skipTests>true</skipTests>