Skip to content

Commit fdee03c

Browse files
committed
Fix extention of unitTest
1 parent 640a1c2 commit fdee03c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

plugin-maven/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,7 @@ any other maven phase (i.e. compile) then it can be configured as below;
182182
<include>src/test/java/**/*.java</include>
183183
</includes>
184184

185+
<!-- Cleanthat will refactor your code, but it may break your style: apply it before your formatter -->
185186
<cleanthat /> <!-- has its own section below -->
186187

187188
<googleJavaFormat /> <!-- has its own section below -->
@@ -285,7 +286,7 @@ These mechanisms already exist for the Gradle plugin.
285286
<version>2.0</version> <!-- optional version of Cleanthat -->
286287
<sourceJdk>${maven.compiler.source}</sourceJdk> <!-- optional. Default to ${maven.compiler.source} else '1.7' -->
287288
<mutators>
288-
<mutator>*</mutator> <!-- optional. Default to '*' to include all mutators -->
289+
<mutator>*</mutator> <!-- optional. Default to '*' to include all mutators -->
289290
</mutators>
290291
<mutators> <!-- List of mutators: https://github.com/solven-eu/cleanthat/tree/master/java/src/main/java/eu/solven/cleanthat/engine/java/refactorer/mutators -->
291292
<mutator>LiteralsFirstInComparisons</mutator> <!-- You may alternatively list the requested mutators -->

0 commit comments

Comments
 (0)