summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHaakon Dybdahl <dybis@users.noreply.github.com>2017-04-25 15:05:06 +0200
committerGitHub <noreply@github.com>2017-04-25 15:05:06 +0200
commit9ecb30a540b92883df174ea66fd9bd489e472ed2 (patch)
tree3a9f7d9075428a6b2074fd92da9b6cd641a47114
parent4bde2137a57b44c4c0c6a1870ff73b7dd830bb6c (diff)
parent4b34a88c928f8c701bd33980e40c48a576098fe9 (diff)
Merge pull request #2275 from yahoo/arnej/add-Werror-documentgen-test
disallow some warnings
-rw-r--r--documentgen-test/pom.xml7
1 files changed, 4 insertions, 3 deletions
diff --git a/documentgen-test/pom.xml b/documentgen-test/pom.xml
index 8387a586701..972cc8633f7 100644
--- a/documentgen-test/pom.xml
+++ b/documentgen-test/pom.xml
@@ -44,9 +44,10 @@
<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>-Xlint:-serial</arg>
+ <arg>-Werror</arg>
</compilerArgs>
</configuration>
</plugin>