summaryrefslogtreecommitdiffstats
path: root/config-model/pom.xml
diff options
context:
space:
mode:
authorArne H Juul <arnej@yahoo-inc.com>2017-04-25 14:44:44 +0200
committerArne H Juul <arnej@yahoo-inc.com>2017-04-25 14:44:44 +0200
commit6b02d4bd56f0ca11e7771daf809a7058b4b67514 (patch)
treeac7cd4355fcddd5306fe9667cb1f23c3978d884c /config-model/pom.xml
parent5bd8497d2d616ec337250f596767b6809731b3f7 (diff)
disallow some warnings
Diffstat (limited to 'config-model/pom.xml')
-rw-r--r--config-model/pom.xml11
1 files changed, 8 insertions, 3 deletions
diff --git a/config-model/pom.xml b/config-model/pom.xml
index 57c5725ec57..f4674ba5f10 100644
--- a/config-model/pom.xml
+++ b/config-model/pom.xml
@@ -324,9 +324,14 @@
<source>1.8</source>
<target>1.8</target>
<compilerArgs>
- <arg>-Xlint:rawtypes</arg>
- <arg>-Xlint:unchecked</arg>
- <arg>-Xlint:deprecation</arg>
+ <arg>-Xlint:all</arg>
+ <arg>-Xlint:-rawtypes</arg>
+ <arg>-Xlint:-unchecked</arg>
+ <arg>-Xlint:-deprecation</arg>
+ <arg>-Xlint:-serial</arg>
+ <arg>-Xlint:-cast</arg>
+ <arg>-Xlint:-overloads</arg>
+ <arg>-Werror</arg>
</compilerArgs>
</configuration>
</plugin>