aboutsummaryrefslogtreecommitdiffstats
path: root/application-deploy-plugin
diff options
context:
space:
mode:
authorArne H Juul <arnej@yahoo-inc.com>2017-04-25 14:54:09 +0200
committerArne H Juul <arnej@yahoo-inc.com>2017-04-25 14:54:09 +0200
commit6d659a52be487e5163257527a96b3cd661677b85 (patch)
treeae10b37d7eed743c45fc9e6f6e6db38b26a31bbe /application-deploy-plugin
parente18aacbe5755d1cb16b7f4651cec0b91085cb7d9 (diff)
disallow some warnings
Diffstat (limited to 'application-deploy-plugin')
-rw-r--r--application-deploy-plugin/pom.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/application-deploy-plugin/pom.xml b/application-deploy-plugin/pom.xml
index fbed02aa934..c2b373ea8a0 100644
--- a/application-deploy-plugin/pom.xml
+++ b/application-deploy-plugin/pom.xml
@@ -19,6 +19,7 @@
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
+ <version>3.5.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
@@ -27,6 +28,7 @@
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
+ <version>3.5</version>
<scope>provided</scope>
</dependency>
<dependency>
@@ -45,6 +47,20 @@
</plugin>
<plugin>
<artifactId>maven-plugin-plugin</artifactId>
+ <version>3.5</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <compilerArgs>
+ <arg>-Xlint:all</arg>
+ <arg>-Xlint:-processing</arg>
+ <arg>-Xlint:-try</arg>
+ <arg>-Xlint:-serial</arg>
+ <arg>-Werror</arg>
+ </compilerArgs>
+ </configuration>
</plugin>
</plugins>
</build>