1 2 3 4 5 6 7 8 9 10 11 12 13
|
Description: Don't break the build on compiler warnings (fixes build issues with recent JDKs)
Author: Emmanuel Bourg <[email protected]>
Forwarded: not-needed
--- a/pom.xml
b/pom.xml
@@ -255,7 255,6 @@
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<compilerArgs>
- <arg>-Werror</arg>
<arg>-Xlint:all</arg>
<!-- Workaround for JDK bug https://bugs.openjdk.java.net/browse/JDK-6999068 -->
<arg>-Xlint:-processing</arg>
|