style: enable compiler warnings and treat them as errors (#5165)

This commit is contained in:
Piotr Idzik 2024-05-19 14:36:16 +02:00 committed by GitHub
parent bf9d0ed66a
commit d77d9010a8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -75,6 +75,15 @@
<configuration>
<source>17</source>
<target>17</target>
<compilerArgs>
<arg>-Xlint:all</arg>
<arg>-Xlint:-auxiliaryclass</arg>
<arg>-Xlint:-rawtypes</arg>
<arg>-Xlint:-serial</arg>
<arg>-Xlint:-try</arg>
<arg>-Xlint:-unchecked</arg>
<arg>-Werror</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>