summaryrefslogtreecommitdiffstats
path: root/processing
diff options
context:
space:
mode:
authorArne H Juul <arnej@yahoo-inc.com>2017-04-25 12:02:20 +0200
committerArne H Juul <arnej@yahoo-inc.com>2017-04-25 12:02:20 +0200
commitdc61038bb911a2f84a3d63b558e8a8a1e61f6c3c (patch)
treececa0da6f6406786e96d29446bf0cec3dac7ae2a /processing
parent8d5aef816dadfdd3ba03b93f49aded3618473eee (diff)
disallow some warnings
Diffstat (limited to 'processing')
-rw-r--r--processing/pom.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/processing/pom.xml b/processing/pom.xml
index a5f25d0aa0f..d3f5431ca00 100644
--- a/processing/pom.xml
+++ b/processing/pom.xml
@@ -38,4 +38,20 @@
<scope>provided</scope>
</dependency>
</dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <compilerArgs>
+ <arg>-Xlint:all</arg>
+ <arg>-Xlint:-rawtypes</arg>
+ <arg>-Xlint:-serial</arg>
+ <arg>-Werror</arg>
+ </compilerArgs>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
</project>