summaryrefslogtreecommitdiffstats
path: root/jdisc_core
diff options
context:
space:
mode:
authorArne H Juul <arnej@yahoo-inc.com>2017-04-25 10:02:11 +0200
committerArne H Juul <arnej@yahoo-inc.com>2017-04-25 10:02:11 +0200
commit4c2f938ec3e0604878827bf18e141e9c58b0775a (patch)
tree70faf87ee8e7c3223cbc77181eeb6ccf10b2e46b /jdisc_core
parent999f5d4a2b5dc3e4e4229c9ff532859c560d89eb (diff)
disallow warnings
Diffstat (limited to 'jdisc_core')
-rw-r--r--jdisc_core/pom.xml8
1 files changed, 5 insertions, 3 deletions
diff --git a/jdisc_core/pom.xml b/jdisc_core/pom.xml
index 4704c417230..6227600f24c 100644
--- a/jdisc_core/pom.xml
+++ b/jdisc_core/pom.xml
@@ -134,9 +134,11 @@
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArgs>
- <arg>-Xlint:rawtypes</arg>
- <arg>-Xlint:unchecked</arg>
- <arg>-Xlint:deprecation</arg>
+ <arg>-Xlint:all</arg>
+ <arg>-Xlint:-processing</arg>
+ <arg>-Xlint:-try</arg>
+ <arg>-Xlint:-serial</arg>
+ <arg>-Werror</arg>
</compilerArgs>
</configuration>
</plugin>