summaryrefslogtreecommitdiffstats
path: root/metrics
diff options
context:
space:
mode:
authorArne H Juul <arnej@yahoo-inc.com>2017-04-25 08:51:00 +0200
committerArne H Juul <arnej@yahoo-inc.com>2017-04-27 15:15:49 +0200
commit95788d2ff5ade4725be2b417872e6e740546d9bd (patch)
treeb1fd51f92de6d5a87a85ba083440a2cd9f846b73 /metrics
parent88a7a1c24293ac2412bae94e8eb574a074e0001e (diff)
disallow warnings
Diffstat (limited to 'metrics')
-rw-r--r--metrics/pom.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/metrics/pom.xml b/metrics/pom.xml
index af78b9e7c91..498f936ad16 100644
--- a/metrics/pom.xml
+++ b/metrics/pom.xml
@@ -63,9 +63,9 @@
<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:-unchecked</arg>
+ <arg>-Werror</arg>
</compilerArgs>
</configuration>
</plugin>