You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugin-maven/README.md
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -182,6 +182,7 @@ any other maven phase (i.e. compile) then it can be configured as below;
182
182
<include>src/test/java/**/*.java</include>
183
183
</includes>
184
184
185
+
<!-- Cleanthat will refactor your code, but it may break your style: apply it before your formatter -->
185
186
<cleanthat /> <!-- has its own section below -->
186
187
187
188
<googleJavaFormat /> <!-- has its own section below -->
@@ -285,7 +286,7 @@ These mechanisms already exist for the Gradle plugin.
285
286
<version>2.0</version> <!-- optional version of Cleanthat -->
286
287
<sourceJdk>${maven.compiler.source}</sourceJdk> <!-- optional. Default to ${maven.compiler.source} else '1.7' -->
287
288
<mutators>
288
-
<mutator>*</mutator> <!-- optional. Default to '*' to include all mutators -->
289
+
<mutator>*</mutator> <!-- optional. Default to '*' to include all mutators -->
289
290
</mutators>
290
291
<mutators> <!-- List of mutators: https://github.com/solven-eu/cleanthat/tree/master/java/src/main/java/eu/solven/cleanthat/engine/java/refactorer/mutators -->
291
292
<mutator>LiteralsFirstInComparisons</mutator> <!-- You may alternatively list the requested mutators -->
0 commit comments