We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc0f94f commit 027fe77Copy full SHA for 027fe77
pom.xml
@@ -256,8 +256,16 @@
256
<source>8</source>
257
<target>8</target>
258
<compilerArgument>-Xlint:all</compilerArgument>
259
- <showWarnings>true</showWarnings>
260
<showDeprecation>true</showDeprecation>
+ <showWarnings>true</showWarnings>
261
+ <compilerArgs>
262
+ <!-- We turn off:
263
+ - `serial` because we don't use Java serialization
264
+ (and all it does is stupidly complain about the serialVersionUID)
265
+ - `processing` because it complains about every annotation
266
+ -->
267
+ <arg>-Xlint:all,-serial,-processing</arg>
268
+ </compilerArgs>
269
</configuration>
270
</plugin>
271
<plugin>
0 commit comments