We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 612617f commit 0f22e08Copy full SHA for 0f22e08
pom.xml
@@ -336,6 +336,14 @@
336
<configuration>
337
<source>${maven.compiler.source}</source>
338
<target>${maven.compiler.target}</target>
339
+ <showWarnings>true</showWarnings>
340
+ <compilerArgs>
341
+ <!-- Enable all linter messages for the compiler. -->
342
+ <!-- TODO: Remove annotations preprocess warning exception. -->
343
+ <arg>-Xlint:all,-processing</arg>
344
+ <!-- Turn all warnings into errors to help keep the code clean. -->
345
+ <arg>-Werror</arg>
346
+ </compilerArgs>
347
</configuration>
348
</plugin>
349
<plugin>
0 commit comments